Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have application working with SQLite DB(table with two rows) I need to recieve _ID row of the selected listview Item, but don't know how to do it. So, main activity

public class Main extends ListActivity {
private RecipesData recipes;
private static int[] TO={0,R.id.row_text_id};
private static String[] FROM={ _ID, CATEGORY_NAME, };
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    recipes=new RecipesData(this);
    try{
        Cursor cursor=getCategories();
        showCategories(cursor);
    }finally{
        recipes.close();
    }
    final ListView lv=getListView();
    lv.setOnItemClickListener(new OnItemClickListener(){
        public void onItemClick(AdapterView<?> a, View v, int position, long id){
             AlertDialog.Builder adb=new AlertDialog.Builder(Main.this);
                  adb.setTitle("LVSelectedItemExample");
                 adb.setMessage("Selected Item is = "+((TextView)v).getText());
                  adb.setPositiveButton("Ok", null);
                  adb.show();
        }
    });
}
@Override
protected void onPause(){
    recipes.close();
    super.onPause();
}
@Override
protected void onStop(){
    recipes.close();
    super.onStop();
}
@Override
public boolean onCreateOptionsMenu(Menu menu){
    super.onCreateOptionsMenu(menu);
    MenuInflater inflater=getMenuInflater();
    inflater.inflate(R.menu.menu, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item){
    switch(item.getItemId()){
    case R.id.add_category_item:
         return true;
    }
    return false;
}

private void showCategories(Cursor cursor){
    SimpleCursorAdapter adapter=new SimpleCursorAdapter(this,R.layout.item,cursor,FROM,TO);
    setListAdapter(adapter);
}
private Cursor getCategories(){
    SQLiteDatabase db=recipes.getReadableDatabase();
    Cursor cursor=db.query(CATEGORY_TABLE, FROM, null, null, null, null, null);
    startManagingCursor(cursor);
    return cursor;
}}
share|improve this question

1 Answer

up vote 0 down vote accepted

in your onItemClick

Cursor cursor = ((CursorAdapter) a.getAdapter()).getCursor();
String currentId = cursor.getString(0);
share|improve this answer
Seems to work) Spasibo;) – Mighter Oct 6 '10 at 18:50
Green checkbox to accept the answer is on the left :) – Alex Volovoy Oct 6 '10 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.