更改android中列表视图的文本颜色

发布于 2024-08-24 02:21:07 字数 48 浏览 8 评论 0原文

我正在尝试更改 Android 中列表视图的文本颜色。谁能告诉我它是如何完成的吗?

I am trying to change the text color of a listview in Android. Can anyone please give me a heads up on how it's done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

唐婉 2024-08-31 02:21:07

是的,可能

请添加一个单独的布局与文本视图

    <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**
像这样

new ArrayAdapter(this,
R.layout.layoutfilename,*android.R.id.text1*,userList);

Yes possible

please add a separate layout with the 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>

and change the
**android.R.layout.simple_list_item_1**
to and pass the textview id like this

new ArrayAdapter(this,
R.layout.layoutfilename,*android.R.id.text1*,userList);

感性不性感 2024-08-31 02:21:07

您可以使用主题来设置 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("

" + someText + "

" + someOtherText + "

"));

You can use themes to set the styles for your TextViews.
From the Android dev site.

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

Then to use it:

<TextView style="@style/CodeFont" />

Edit - based on comment

You asked about multiple color in the same TextView:
Your best bet is to use html. Which you set in a TextView for example:

myTextView.setText(Html.fromHtml("<p style="color:red">" + someText + "</p><p style="color:blue">" + someOtherText + "</p>"));

再见回来 2024-08-31 02:21:07

您是否在layout.xml 文件中尝试过类似 android:textColor="#ffffff" 的内容?

Have you tried something like android:textColor="#ffffff" in your layout.xml file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文