Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/jenkins/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在android中更改列表视图的文本颜色_Android_Android Listview_Android Text Color - Fatal编程技术网

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

在android中更改列表视图的文本颜色,android,android-listview,android-text-color,Android,Android Listview,Android Text Color,我正在尝试在Android中更改listview的文本颜色。有人能告诉我这是怎么做的吗?你在layout.xml文件中尝试过类似于android:textColor=“#ffffffff”的东西吗?你可以使用主题设置文本视图的样式。 从 #00FF00 单空间 然后使用它: <TextView style="@style/CodeFont" /> 编辑-基于评论 您在同一文本视图中询问了多种颜色: 最好的选择是使用html。您可以在文本视图中设置它,例如: myTextVi

我正在尝试在Android中更改listview的文本颜色。有人能告诉我这是怎么做的吗?

你在layout.xml文件中尝试过类似于
android:textColor=“#ffffffff”
的东西吗?

你可以使用主题设置
文本视图的样式。
从


#00FF00
单空间
然后使用它:

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

编辑-基于评论

您在同一文本视图中询问了多种颜色: 最好的选择是使用html。您可以在文本视图中设置它,例如:

myTextView.setText(Html.fromHtml(“

”+someText+”

“+someOtherText+”

”)

可能是

请使用文本视图添加单独的布局

    <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\u list\u item\u 1** 按如下方式发送和传递textview id

新阵列适配器(此,
R.layout.layoutfilename,*android.R.id.text1*,用户列表)

您好,问题是如何更改列表视图中文本的颜色。你能解释一下怎么做吗?如果你想要多个不同颜色的文本,那么你最好使用html。在文本视图中设置如下:@Tristan。。。。我们是否可以使用样式代码使用assest文件夹中的字体。。意味着我们不必进行运行时编码。。。对于字体…是的,但你不是指R.layout.layoutfilename,R.id.text1吗?
    <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>