1

我試圖改變偏好的文本顏色,當用戶輸入一個不正確的值,類似於web窗體。我在this question中發現瞭如何訪問摘要的文本視圖,但顏色未被更改。我使用的代碼是這樣的:如何以編程方式更改偏好設置的摘要文本顏色?

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

UserPasswordPrefPreference類型。我怎麼能改變顏色?

回答

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

相關問題