我有一个EditPreferences.class,它在我的xml文件夹中扩展了preferenceactivity和我的preferences.xml布局 在xml布局中,我使用了EditTextPreference控件,它具有布局et_layout.xml 我的问题是如何在EditPreferences.class中获取我的textview id
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/app_name" >
<PreferenceCategory
android:icon="@drawable/batitle"
android:textColor="#000000"
android:title="كۆرۈنۈش" >
<ListPreference
android:defaultValue="@string/result_fontsize_default"
android:dialogTitle="تاللاڭ"
android:entries="@array/result_fontsize_keys"
android:entryValues="@array/result_fontsize_values"
android:key="result_fontsize"
android:summary="ئىزدەش نەتىجىسىنىڭ كۆرۈنۈش چوڭلۇقى"
android:textColor="#000000"
android:title="خەت چوڭلۇقى" />
<EditTextPreference
android:dialogIcon="@drawable/batitle"
android:dialogTitle="editText"
android:key="tel"
android:layout="@layout/layout" />
<Preference />
</PreferenceCategory>
</PreferenceScreen>
布局
<?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:gravity="right"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
答案 0 :(得分:0)
给你膨胀xml
LayoutInflater inflater = LayoutInflater.from(this);
View view = inflater.inflate(R.layout.linear_layout, null);
textView2 = (TextView) view.findViewById(R.id.textView2);
试试这个,希望它可以帮到你
答案 1 :(得分:0)
试试这个,
SharedPreferences prefs;
String x = prefs.getString("tel",defaultString value);
textView.setText(x);
答案 2 :(得分:0)
EditPreferences.onCreate中的简单findViewById不起作用的原因是因为使用TextView的布局是在ListView内部创建的,并且在活动启动之前实际发生了一段延迟。
我不确定这是最好的方法,但处理ListView项目填充事件的一种方法是处理ListView对象的OnHierarchyChange事件。如果你把它放在你的onCreate中,在从我认为是对addPreferencesFromResource的调用加载了首选项布局之后,它应该可以工作。
ListView list = (ListView) findViewById(android.R.id.list);
list.setOnHierarchyChangeListener(new ViewGroup.OnHierarchyChangeListener() {
@Override
public void onChildViewAdded(View parent, View child) {
TextView text = (TextView) child.findViewById(R.id.textView2);
if (text != null) {
text.setText("Something else here");
}
}
@Override
public void onChildViewRemoved(View view, View view2) {
}
});