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 7194077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:17:55+00:00 2026-05-28T20:17:55+00:00

So I have a ListView on which I click to start new Activity called

  • 0

So I have a ListView on which I click to start new Activity called MerchantView.
Between the activities I am passing the uid which is a unique identifier of a merchant.
Im then extracting merchant data from DB and want to view this data in this view.
Everything works (while debugging i can see that data is taken from DB and passed properly to setText methods) but the data does not show, am I doing this right?

public class MerchantView extends Activity {
public void onCreate(Bundle savedInstanceState) {

     super.onCreate(savedInstanceState);
     setContentView(R.layout.merchant);

     String desc = "";
     String name = "";


     Bundle extras = getIntent().getExtras();
     String uid = "0";
     if(extras !=null) {
         uid = extras.getString("uid");     
     }

     // get merchant from database
     if(Integer.valueOf(uid) > 0){
         Cursor c = Utilities.db.query(mydb.TABLE_MERCHANT,
                null,
                "uid=?", new String[] {uid}, null, null, null);

         if(c.moveToFirst() != false){
             name = c.getString(c.getColumnIndex(MerchantsColumns.COLname));
             desc = c.getString(c.getColumnIndex(MerchantsColumns.COLdesc));
         }
         // set values to UI
         TextView descUI = (TextView) findViewById(R.id.merchantDescription);
         descUI.setText(desc);
         TextView nameUI = (TextView) findViewById(R.id.merchantName);
         nameUI.setText(name);           
     }
     else{

     }

     Button buttonMerchants = (Button) findViewById(R.id.buttonMerchants);
     buttonMerchants.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            finish();
        }
     });



}

}

  • 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-28T20:17:56+00:00Added an answer on May 28, 2026 at 8:17 pm

    Data was set properly. The problem was in layout. The header (LinearLayout) at the top had two buttons and it was set to android:layout_height=”fill_parent” which was taking whole space. After fixing that, data is showing properly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have designed an activity in which there is a listView. I want that
I have a mainActivity which is Customer.java with listview of 5 diff. activities. I
So I have a listview in which each component wired to an on click
I have a ListView which sometimes I need to put around 10000 items in.
I have a ListView which is using a GridView to display a DataTable and
I have a listview which has its datasource changed after update of a search
I have a WPF ListView which repeats the data vertically. I cannot figure out
This is a very common scenario: displaying images in a ListView which have to
I have the following ListView in which I am using the JQuery UI sortable
I have an app with a large ListView which is terribly slow so I'm

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.