设置列表的图标

时间:2011-06-05 18:35:54

标签: android icons textview

我在Android中有一个应用程序,在某些活动中,它使用项目列表显示来自数据库列的内容。

这就是我这样做的方式:

lv = (ListView) findViewById(R.id.list);

    Cursor cursor = db.getAllData();
        startManagingCursor(cursor);

        adapter = new SimpleCursorAdapter(this, R.layout.listitem, cursor,
                new String[] { db.KEY_USER }, new int[] { R.id.txt1 });
        lv.setAdapter(adapter);

我正在使用适配器连接文本视图和表格的内容。

以下是我的Xml的样子“

<?xml version="1.0" encoding="utf-8"?>  
<TextView 
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:id="@+id/txt1"
  android:textSize="20dip" 
  android:padding="8dip" /> 

我的问题是:

如何为每个与数据库连接的列表项设置图标和颜色?

1 个答案:

答案 0 :(得分:0)

您可能需要考虑使用android.app.ListActivity。通过列表活动,您可以提供xml布局,为您的商品创建高级视觉效果。