如何以编程方式更改“首选项”的摘要文本颜色?

时间:2014-01-13 22:14:28

标签: android sharedpreferences preferences preferenceactivity textcolor

我试图在用户输入不正确的值时更改Preference的文本颜色,类似于Web表单。我在this question中找到了如何访问摘要的文本视图但颜色没有被更改。我正在使用的代码是:

LinearLayout ly = (LinearLayout) userPasswordPref.getView(null, getListView());
TextView summarytv = (TextView) ((RelativeLayout) ly.getChildAt(1)).getChildAt(1);
summarytv.setTextColor(Color.RED);

UserPasswordPref的类型为Preference。我怎么能改变颜色?

1 个答案:

答案 0 :(得分:2)

我找到了一个解决方案,我不得不使用以下代码创建一个布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@android:id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@android:id/summary"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TextView"
    android:textColor="@color/red" />

</LinearLayout>

然后,在我的代码中:

userPasswordPref.setLayoutResource(R.layout.summary_error);
userPasswordPref.setSummary(R.string.error_summary);

其中userPasswordPrefPreferencesummary_error是上面的布局。

来源elbauldelprogramador