I know that there are many iternal layouts which I can use for adapters – android.R.layout.simple_list_item_1, android.R.layout.select_dialog_item, etc. But is there any internal layout which I can use for making item with icon and text (image___text)? Why android.id should I use for it?
Share
Try
android.R.layout.activity_list_item.EDIT: use either
android.R.id.iconorR.id.iconfor the icon, andandroid.R.id.text1for the text.