gpt4 book ai didi

带有 PreferenceActivity 的 Android NavigationDrawer

转载 作者:搜寻专家 更新时间:2023-11-01 08:52:22 25 4
gpt4 key购买 nike

谁能建议我如何在首选项 Activity 中实现抽屉导航?

我的 JavaCode。

package com.example.android.navigationdrawerexample;
import android.os.Bundle;
import android.preference.PreferenceActivity;
public class AppPreferences extends PreferenceActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.as);
}
}

我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference android:title="Your Name"
android:key="username"
android:summary="Please provide your username"></EditTextPreference>
<CheckBoxPreference android:title="Application Updates"
android:defaultValue="false"
android:summary="This option if selected will allow the application to check for latest versions."
android:key="applicationUpdates" />
<ListPreference android:title="Download Details"
android:summary="Select the kind of data that you would like to download"
android:key="downloadType"

/>
</PreferenceScreen>

请有人给我建议。我正在等待您的回复。

最佳答案

尝试将 PreferenceFragment 与 FragmentActivity 一起使用,而不是 PreferenceActivity。

关于带有 PreferenceActivity 的 Android NavigationDrawer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21980823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com