我想查看个人资料活动,以显示用户的姓名和图像,下面是首选项屏幕。我已经在Android Studio中使用了PreferenceFragmentCompat,但它根本无法正常工作。我想将视图窗口小部件与首选项屏幕结合起来。
这是我的设置片段:
public class FragmentSettings extends PreferenceFragmentCompat{
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
addPreferencesFromResource(R.xml.preference_settings);
}
@Override
public View onCreateView(LayoutInflater layoutInflater , @Nullable ViewGroup container, @Nullable Bundle savedInstanceState){
return layoutInflater.inflate(R.layout.fragment_settings,container,false);
}
}
这是我的preference_settings.xml
<android.support.v7.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.preference.PreferenceCategory
android:title="Category 1">
<android.support.v7.preference.SwitchPreferenceCompat
android:key="key1"
android:title="Switch Preference"
android:summary="Switch Summary"
android:defaultValue="true" />
<android.support.v7.preference.EditTextPreference
android:key="key2"
android:title="EditText Preference"
android:summary="EditText Summary"
android:dialogMessage="Dialog Message"
android:defaultValue="Default value" />
<android.support.v7.preference.CheckBoxPreference
android:key="key3"
android:title="CheckBox Preference"
android:summary="CheckBox Summary"
android:defaultValue="true"/>
</android.support.v7.preference.PreferenceCategory>
这是fragment_settings.xml视图:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:src="@mipmap/user" />
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView"
android:textSize="25dp"
android:textAlignment="center"
android:text="TextView" />
<ListView
android:id="@+id/android:list"
android:layout_below="@id/textView4"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
我想要实现以下外观:
答案 0 :(得分:0)
如果您想在布局中放置FragmentSettings
,可以在fragment_settings.xml
内部使用片段容器,然后在其中放置FragmentSettings
。