hi all,
   now l have a listview,the item in listview is tablelayout.when listitem can 
focus when i use the trackball,but when i touch the listitem,it lose focus,why?
 my adapter is extended ArrayAdapter like this


public class SimpleStringAdapter extends ArrayAdapter<TableLayout>{

    public SimpleStringAdapter(Context context,int textViewResourceId, List 
Items ) {
         
    super(context,textViewResourceId,Items);
    
    }
    
    
    public View getView(int position, View convertView, ViewGroup parent) {
        TableLayout s= getItem(position);
    
    return s ;
    }
    

    }


i need your help!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to