我正在尝试更改 Android 中列表视图的文本颜色。谁能告诉我它是如何完成的?
问问题
40076 次
3 回答
22
可以
请使用 textview 添加单独的布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeight"
android:paddingLeft="6dip"
android:textColor="@color/black"
android:paddingRight="10dip"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
并将 **android.R.layout.simple_list_item_1**更改 为并像这样传递 textview id
新的 ArrayAdapter(this, R.layout.layoutfilename ,* android.R.id.text1 *,userList);
于 2012-05-11T06:24:40.987 回答
6
您可以使用主题为您的TextViews
. 来自Android 开发网站。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
</resources>
然后使用它:
<TextView style="@style/CodeFont" />
编辑 - 基于评论
您在同一个 TextView 中询问了多种颜色:您最好的选择是使用 html。例如,您在 TextView 中设置的内容:
myTextView.setText(Html.fromHtml("<p style="color:red">" + someText + "</p><p style="color:blue">" + someOtherText + "</p>"));
于 2010-03-01T20:46:55.223 回答
-6
你有没有android:textColor="#ffffff"
在你的 layout.xml 文件中尝试过类似的东西?
于 2010-03-01T13:33:06.820 回答