Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5960365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:49:01+00:00 2026-05-22T18:49:01+00:00

I have a textview in which i append text in two ways: First way:

  • 0

I have a textview in which i append text in two ways:
First way: by clicking button and getting what is in EditText.

 sendbutton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
              txview.append("Text: "+txedit.getText()+"\n");
              txedit.setText("");

 }
          });

And this works fine, when i click the button textview updates the view with new text.

BUT

The second way, I listen to xmpp listener (asmack library) and on recieving message I append it to textView.

 chat = xmpp.getChatManager().createChat(contactid[1], new MessageListener() {
                public void processMessage(Chat chat, Message message) {    
                     try {
                        chat.sendMessage(message.getBody());
                    } catch (XMPPException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }                txview.append("Text"+message.getFrom()+"\n"+message.getBody()+"\n");               }                                                       }
            );;

The Problem is, that i recieve message, i know it for sure (because i resend it to user with chat.sendMessage(message.getBody());) , BUT textview shows my messages only after I change the view or get application to background (clicking home button) and then getting it back to the front.

What I tried
calling invalidate() on every view, doesn’t work at all.

Is it any solution or an other way to do what im doing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T18:49:02+00:00Added an answer on May 22, 2026 at 6:49 pm

    You can achieve posting on GUI thread by doing following trick.
    Pass your context (Activity or Service) to your listener. Inside listener:

    Handler h = new Handler(context.getMainLooper());
    
    h.post(new Runnable() {
        @Override
        public void run() {
             txview.append("Text"+message.getFrom()+"\n"+message.getBody()+"\n"); 
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a textView which is configured as an EditText. But the problem is
In my app I have a textView which contains real-time messages from my app,
I have to set the style for a TextView which is created programmatically. How
I have a TextView that will hold a styled, multiline string. This text is
I would like to have a GtkTextView in my (Python) program which shows text
Hello I have a bunch of text on my file which i display. I
I have a Cocoa app I'm writing that has an ImageView with a TextView
Have just started using Visual Studio Professional's built-in unit testing features, which as I
Have had to write my first proper multithreaded coded recently, and realised just how
I have a TextView in my android application that has a set width on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.