【发布时间】:2011-12-14 19:16:11
【问题描述】:
您能否在带有列表视图的SimpleCursorAdapter 中的一行中使用imageview 和textview 的布局?
这将是布局
<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 中使用列表视图完成吗?当我需要列表视图中的图像时,我总是使用自定义数组适配器,但从不使用光标。
如果可以的话,我将如何设置图像?
【问题讨论】:
标签: android listview simplecursoradapter