-1

我有一个列表视图,其中每个项目都有 2 行。看起来像这样:

Title of item1

Subtitle of item1

我想知道是否有办法通过代码更改第二行的颜色和大小?
他们都共享 1TextView所以我不能只编辑它。我可以使用 2 个文本视图,但我不确定如何设置。
不过,我正在为列表视图使用自定义 xml。

    <?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">

这是我的自定义列表视图 xml:

<RelativeLayout android:id="@+id/linearLayout1" 
android:layout_width="wrap_content" 
android:layout_height="match_parent" 
android:layout_margin="7dip">

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#474747"
         />
 </RelativeLayout>

</LinearLayout>

这是我将 xml 分配给列表视图的方式:

    ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.row, R.id.label, arrayList);
    lv.setAdapter(arrayAdapter); 
4

1 回答 1

0

您可以将 ArrayAdapter 与两个 Textview 一起使用

将 simple_list_item_2 与 ArrayAdapter 一起使用

链接

根据链接,您将使用 row.getText1()、row.getText2() 获得文本视图,以便您可以设置它们的颜色

或者

可以在链接中使用自定义适配器

于 2012-06-22T12:28:28.053 回答