у вас есть макет с imageview
и textview
для строки в SimpleCursorAdapter
со списком?
это будет макет
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/bowler_txt"
android:paddingLeft="25dp"
android:textSize="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Bowler"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
можно ли это сделать в SimpleCursorAdapter со списком? когда мне нужны были изображения в списке, я всегда пользовался пользовательским массивом, но никогда не с помощью курсора.
Как установить изображение, если это можно сделать?