, SimpleCursorAdapter
listesindeki bir satır için imageview
ve textview
ile bir düzeniniz var mı?ImageView ve TextView ile SimpleCursorAdapter
bu düzen olurdu
<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>
bir liste görünümü ile SimpleCursorAdapter yapılabilir ? Bir liste görünümünde görüntülere ihtiyacım olduğunda, her zaman özel bir arrayadapter kullandım ama hiçbir zaman bir imleç kullanmamıştım.
Eğer yapılabilirse resmi nasıl ayarlayabilirim?
... veya geçersiz kılma setViewImage – Selvin