小编典典

Android 选择器和文本颜色

all

我想要一个简单的TextView行为方式。这是 XML:simple_list_item_1``ListView

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:gravity="center" android:focusable="true"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:background="@android:drawable/list_selector_background" />

除了(预期)在聚焦状态下不会改变的文本颜色之外,一切都有效。我如何使它更改为textAppearanceLargeInverse


阅读 54

收藏
2022-06-28

共1个答案

小编典典

选择器也是这里的答案。

在源代码中搜索 bright_text_dark_focused.xml,添加到 res/color 目录下的项目中,然后从 TextView 引用为

android:textColor="@color/bright_text_dark_focused"
2022-06-28