我有一个列表视图,其中每个项目都有 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);