我正在使用PreferenceFragment
一些默认首选项类别和一种自定义布局:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory
android:key="first_category"
android:title="config" >
<EditTextPreference
android:defaultValue="example"
android:dialogMessage="text"
android:dialogTitle="Title"
android:key="mykey"
android:summary="summary"
android:title="title" />
<Preference
android:key="test_connection"
android:title="Test connection"
android:layout="@layout/test_conn" />
</PreferenceCategory>
</PreferenceScreen>
我的 test_conn 布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="6dip"
android:layout_marginLeft="15dip"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_weight="1" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="20dp"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:text="Test connection"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:text="Ko"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#ff0000"
android:textStyle="bold" />
</RelativeLayout>
我正在R.id.summary
使用以下代码阅读文本视图:
addPreferencesFromResource(R.xml.preferences);
findPreference(TEST_CONN).setOnPreferenceClickListener(this);
Preference custom = findPreference(TEST_CONN);
customv = custom.getView(null, null);
res = (TextView) customv.findViewById(R.id.summary);
我可以正确阅读我的 TextView,但如果我尝试更改文本,例如在异步任务中,我看不到文本已更改。
这是异步任务的一部分:
@Override
protected void onPostExecute(Boolean result) {
if (result == true){
res.setText("Ok");
res.setTextColor(Color.GREEN);
}
else {
res.setText("Ko");
res.setTextColor(Color.RED);
}
pdia.dismiss();
}
当用户单击首选项“test_connection”时,asynctask 将启动并在函数 onPostExecute 中修改文本,但不起作用。我错过了什么吗?我应该用另一种方法阅读文本视图吗?