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

  • SEARCH
  • Home
  • 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 9009591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:14:23+00:00 2026-06-16T02:14:23+00:00

I have a cursor in my main activity to query two columns of the

  • 0

I have a cursor in my main activity to query two columns of the database and display them using a simple cursor adapter.

private Cursor doQuery() {
return(db.getReadableDatabase().rawQuery("SELECT RestaurantID AS _id, RestaurantName, StoreNo "
+ "FROM RestaurantList ORDER BY RestaurantName", null));

}

public void onPostExecute() {
SimpleCursorAdapter adapter;

if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.HONEYCOMB) {
adapter=new SimpleCursorAdapter(this, R.layout.activity_all_restaurants,
        doQuery(), new String[] {
    RestaurantDB.colRestaurantName,
    RestaurantDB.colRestaurantStore },
    new int[] { R.id.title, R.id.value },
    0);
}
else {
adapter=new SimpleCursorAdapter(this, R.layout.activity_all_restaurants,
        doQuery(), new String[] {
    RestaurantDB.colRestaurantName,
    RestaurantDB.colRestaurantStore },
    new int[] { R.id.title, R.id.value });
}

setListAdapter(adapter);

}

What I want to do is that when the users click on a particular item, another activity will pop up giving the users more information, which means I need to display the data stored in many other columns of the same item too. My question is how I can do that. I thought I should use onListItemClick, but I don’t know how to associate the item selected in the main activity to the new activity.

Also, in the main activity, I have two textviews in the list that display colRestaurantName and colRestaurantStore respectively. When I use onListItemClick, how can I just retrieve colRestaurantName?

I can do the following to retrieve the position, but I don’t know how I can use it in the new activity:

@Override
public void onListItemClick(ListView parent, View v, int position,
    long id){
Cursor c = ((SimpleCursorAdapter)parent.getAdapter()).getCursor();
selection = String.valueOf(c.getPosition());
Intent i = new Intent(AllRestaurants.this, RestaurantsInfo.class);
i.putExtra("restaurantSelection", selection);
startActivity(i);      
}

Thanks.

  • 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-06-16T02:14:24+00:00Added an answer on June 16, 2026 at 2:14 am

    implement onListItemClick for listview and get textview text and send it to next activity as:

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
           TextView tv = (TextView)v.findViewById(R.id.title);
          String strcolRestaurantName=tv.getText().toString();
    
          Intent intent =new Intent(CurrentActivity.this,NextActivity.class);
          Bundle bundle = new Bundle();
          bundle.putString("RestaurantName",strcolRestaurantName);
          intent.putExtras(bundle);
          startActivity(intent);
    }}
    

    and in NextActivity get Intent as in onCreate :

    Intent i = getIntent();
    Bundle extras = i.getExtras();
    
    String strRestaurantName = extras.getString("RestaurantName");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a main activity that takes elements from a database and displays them
I have a main activity which user a viewpager and a database adapter to
I have a simple main activity with 3 buttons, and a background service that
I have a main Activity and it has two fragments, ListFramgment and DetailFragment. In
I have 3 Activities: The Form Activity, DataBase Helper, and the Main Activity. The
I have the cursor with the query statement as follows: cursor.execute(select rowid from components
I have a listview in my main activity which shows the detail info about
I have a SQlite database with some columns and with a content of an
Here is my code for a simple cursor adapter. public class CursorList extends ListActivity
I have a ListView on main activity, which shows a Contact picture on the

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.