在android中的ListView上显示不同的图标

发布于 2024-08-02 02:04:08 字数 1172 浏览 1 评论 0原文

我有一个 xml 文件名“list_row.xml”,这是在 listView 中加载的:

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:src="@drawable/icon_one"
/>
<TextView
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"        
/>

我使用一个函数从表中加载数据并填写“list_row.xml”文件

private void fillData() {       
    Cursor c = mDbHelper.fetchAllNotes();
    String[] from = new String[]{ ListDbAdapter.KEY_ROWID,
            ListDbAdapter.KEY_ICON, ListDbAdapter.KEY_LABEL };
    int[] to = new int[]{ R.id.id, R.id.icon, R.id.label };
    SimpleCursorAdapter adapter = 
        new SimpleCursorAdapter(this, R.layout.list_row, c, from, to );     
    setListAdapter(adapter);
}

我的问题是如何检查图标值以设置列表视图上的图标显示(我的数据必须图标:icon_one,icon_two)。 有人可以帮我解决代码吗?

I have a xml file name "list_row.xml", this was load in a listView:

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:src="@drawable/icon_one"
/>
<TextView
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"        
/>

I use a function to load data from my table and fill in my "list_row.xml" file

private void fillData() {       
    Cursor c = mDbHelper.fetchAllNotes();
    String[] from = new String[]{ ListDbAdapter.KEY_ROWID,
            ListDbAdapter.KEY_ICON, ListDbAdapter.KEY_LABEL };
    int[] to = new int[]{ R.id.id, R.id.icon, R.id.label };
    SimpleCursorAdapter adapter = 
        new SimpleCursorAdapter(this, R.layout.list_row, c, from, to );     
    setListAdapter(adapter);
}

My question is how can I check the icon value to set the icon display on my listview (my data have to icon: icon_one, icon_two). Can someone help me with the code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十雾 2024-08-09 02:04:08

来自文档

绑定分两个阶段进行。 第一的,
如果 SimpleCursorAdapter.ViewBinder 是
可用的,
setViewValue(android.view.View,
android.database.Cursor, int) 是
调用。 如果返回值为
true,绑定已经发生。 如果
返回值为 false 并且视图
绑定的是一个TextView,
setViewText(TextView, String) 是
调用。 如果返回值为
false 并且要绑定的视图是
图像视图,setViewImage(图像视图,
String) 被调用。

因此,重写 setViewImage() 并手动将您的图标与 ImageView 关联起来。 或者,覆盖 newView()bindView() 并手动绑定整个行。

From the documentation:

Binding occurs in two phases. First,
if a SimpleCursorAdapter.ViewBinder is
available,
setViewValue(android.view.View,
android.database.Cursor, int) is
invoked. If the returned value is
true, binding has occured. If the
returned value is false and the view
to bind is a TextView,
setViewText(TextView, String) is
invoked. If the returned value is
false and the view to bind is an
ImageView, setViewImage(ImageView,
String) is invoked.

So, override setViewImage() and manually associate your icon with the ImageView. Or, override newView() and bindView() and manually bind your whole rows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文