I a listview connecto to a datbase and is showing in the list the value of the record for the app. Something like
com.software.myapp.client.client@44abc0 com.software.myapp.client.client@44abc1 etc in the list I want to show only to show the Client Name Here is my Table scheme Client Id,Name,Addrs,Phone setContentView(R.layout.clientlist); clientds = new ClientDataSource(this); clientds.open(); List<Client> values = clientds.getAllClients(); ArrayAdapter<Client> adapter = new ArrayAdapter<Client>(this, android.R.layout.simple_list_item_1, values); -- 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