我可以在布局中添加首选项,例如我们如何使用<include layout=""/>
标记在另一个布局中包含布局。
我的布局代码就像这样
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<include layout="@layout/settings"/>
<!-- <include layout="@xml/set_variables"/> -->
</LinearLayout>
在上面的布局中我尝试包含首选项@xml/set_variables
,但如果我取消注释<include layout="@xml/set_variables"/>
,我的应用程序将崩溃。请任何人建议有没有办法在布局中包含偏好或者我应该忘记这一点。
答案 0 :(得分:1)
我经历了this Link并找到了解决方案
在我onCreate
的{{1}}中,我添加了
PreferenceActivit
并在setContentView(R.layout.settings);
addPreferencesFromResource(R.xml.set_variables);
布局
ListView
settings
符合我的要求