如何更改列表视图中列表项的颜色

时间:2011-10-05 11:42:58

标签: android listview colors

我在Activity类中使用ListView。我没有为Lis​​tView使用任何XML代码。现在我无法更改listView中Text项的颜色。

我更改了ListView的背景颜色,但无法更改列表项的颜色。我从互联网上得到了一些链接,但我无法弄明白。任何人都可以帮我用一些代码吗?

我的Activity类看起来像这样:

ListView listView;
        // Create an array of Strings, that will be put to our ListActivity
        String[] names = new String[] { "India", "Malaysia" };
        TextView tv = new TextView(getApplicationContext());
        tv.setText("Select Country");
        tv.setTextColor(012);

        listView = getListView();
        listView.addHeaderView(tv);

        listView.setCacheColorHint(Color.rgb(36, 33, 32));
        listView.setBackgroundColor(Color.rgb(225, 243, 253));
        this.setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_expandable_list_item_1,names));

    }

在上面,为列表项的标题设置了tv.setTextColor。它没有工作,因为它要求我传递一个整数值。我可以为Color传递什么整数值? 任何人都可以建议一些代码来改变列表项的颜色吗?

2 个答案:

答案 0 :(得分:1)

对于有彩色的listitem,你需要自定义它。为此,准备一个xml文件:

<强> custom_listitem.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"  
    android:orientation="vertical">


    <TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:textColor="#FFFFFF"
            android:id="@+id/list_item"
            android:background="#FF0000" <!-- for red color -->
            />    

</LinearLayout>

现在你必须在你的适配器中使用它,如 -

listView.setListAdapter(new ArrayAdapter<String>(this,R.layout.custom_item,R.id.list_item,names));

是的,您可以使用Color.REDColor.YELLOW等作为默认颜色,我们可以使用"#3C3C3C"(在xml中使用时)或Color.parseColor("3C3C3C")(同时以编程方式使用)除默认颜色以外的任何颜色。

答案 1 :(得分:0)

您需要创建一个CustomListAdapter。

private class CustomListAdapter extends ArrayAdapter {

    private Context mContext;
    private int id;
    private List <String>items ;

    public CustomListAdapter(Context context, int textViewResourceId , List<String> list ) 
    {
        super(context, textViewResourceId, list);           
        mContext = context;
        id = textViewResourceId;
        items = list ;
    }

    @Override
    public View getView(int position, View v, ViewGroup parent)
    {
        View mView = v ;
        if(mView == null){
            LayoutInflater vi = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            mView = vi.inflate(id, null);
        }

        TextView text = (TextView) mView.findViewById(R.id.textView);

        if(items.get(position) != null )
        {
            text.setTextColor(Color.WHITE);
            text.setText(items.get(position));
            text.setBackgroundColor(Color.RED); 
            int color = Color.argb( 200, 255, 64, 64 );
                text.setBackgroundColor( color );

        }

        return mView;
    }

}

列表项看起来像这样(custom_list.xml):

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

使用TextView api来根据自己的喜好来装饰文字

你会像这样使用它

listAdapter = new CustomListAdapter(YourActivity.this , R.layout.custom_list , mList);
mListView.setAdapter(listAdapter);