gpt4 book ai didi

Android:如何在抽屉导航中实现设置页面?

转载 作者:行者123 更新时间:2023-11-30 00:28:23 26 4
gpt4 key购买 nike

所以我正在创建一个应用程序,它利用一个 Navigation Drawer,它被分成单独的 fragments 以访问每个选项卡。现在,我想了解如何做的事情是,在用户选择抽屉导航 中的“设置”选项卡。由于我不是应用程序开发专家,所以我在互联网上到处寻找有关如何执行此操作的清晰解释。

下面是抽屉导航的图片: Navigation Drawer

如果需要任何布局或类代码,我很乐意提供。非常感谢任何帮助!

最佳答案

您可以使用 PreferenceFragmentCompat ,例如:

首先你创建一个 Fragment 扩展 PreferenceFragmentCompat 和文件夹 res/xml 下关联的布局

settings.xml

<android.support.v7.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.preference.PreferenceCategory
android:key="the_key_to_retrieve_the_preference_in_code"
android:title="the_preference_title">

<android.support.v7.preference.Preference
android:key="key"
android:summary="subtitle"
android:title="title" />

<android.support.v7.preference.Preference
android:key="key2"
android:summary="subtitle2"
android:title="title2" />

<android.support.v7.preference.CheckBoxPreference
android:key="key_for_check_box"
android:summary="subtitle"
android:title="title" />

</android.support.v7.preference.PreferenceCategory>
</android.support.v7.preference.PreferenceScreen>

SettingsFragment.java

public class SettingsFragment extends PreferenceFragmentCompat {

@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
addPreferencesFromResource(R.xml.settings);
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// To get a preference
PreferenceScreen preferenceScreen = getPreferenceScreen();
Preference preference = preferenceScreen.findPreference("preference_ key_defined_in_the_xml");

//You can set a listener
preference.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
@Override
public boolean onPreferenceClick(Preference preference) {
return false;
}
});

//change title
preference.setTitle("my_title");

// etc
}
}

然后您创建一个 Activity 来保存 fragment :

SettingsActivity.java

public class SettingsActivity extends AppCompatActivity {
private Toolbar mToolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.settings_activity);

mToolbar = (Toolbar) findViewById(R.id.toolbar);

setSupportActionBar(mToolbar);
setActionBarTitle("Settings");
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setHomeButtonEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(true);
}
}
}

settings_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<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.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>

<fragment
android:id="@+id/settings_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:name="package.name.SettingsFragment"/>

</android.support.design.widget.CoordinatorLayout>

请务必将新的设置 Activity 添加到您的 list 中

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app">

<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

<!-- add the below line to your AndroidManifest.xml -->
<activity android:name=".SettingsActivity"></activity>

</application>

</manifest>

就是这样,然后当您单击 NavigationDrawer 中的项目时,您设置了一个新的 Intent 并调用它:

Intent intent = new Intent(this /*or the actual context*/, SettingsActivity.class);
startActivity(intent);

希望这对您有所帮助。对不起我的英语。

关于Android:如何在抽屉导航中实现设置页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44945105/

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