如何在 android 应用程序中创建设置屏幕?
How to create settings screen in android app?
如何创建设置屏幕?
我应该使用 PreferenceActivity 还是 PreferenceFragment?
注意- 文档没有帮助
我已经尝试过的:
- 使用 PreferenceActivity 但无法在其中实现简单的工具栏。
- 使用 PreferenceFragment 但太复杂而难以理解。
我想要的是使用 PreferenceFragment
的简单实现
在 Android 3.0 及更高版本中,您应该使用显示应用设置的 PreferenceFragment。
创建一个 SettingsFragment:
public static class SettingsFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.preferences);
}
...
}
并在您的 activity 中显示它,就像任何其他片段一样:
public class SettingsActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
// Display the fragment as the main content.
getFragmentManager().beginTransaction()
.replace(android.R.id.content, new SettingsFragment())
.commit();
}
}
您可以在 activity xml 中包含一个工具栏,并在其下添加一个 SettingsFragment 容器,这样工具栏和您的 SettingsFragment 都会显示)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_catalog_root_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="-20dp">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/fragment_catalog_first_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00000000"
app:elevation="0dp"
>
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_catalog_first_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent_background"
android:elevation="4dp"
>
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/activity_catalog_fragment_cont"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</RelativeLayout>
如果您不使用 androidx(但最好使用),您可以在 xml 中使用工具栏,例如:
<android.support.v7.widget.Toolbar.....>
注意:您需要使用属性 android:layout_marginTop="?android:attr/actionBarSize"
(或者如果您使用的是 AppCompat 库:
?attr/actionBarSize
) 您的片段容器将出现在工具栏下方
在您的 activity 中,不要忘记为您的工具栏覆盖 onClick() 方法:
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
getActivity().onBackPressed();
}
});
这是在 android 中实现设置的完整工作代码:
将此库添加到您的项目
implementation 'androidx.preference:preference:1.1.0-alpha02'
创建 SettingsActivity 并将其添加到 Manifest
<activity android:name=".SettingsActivity"/>
activity_preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/color_primary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Settings"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@android:color/white"
android:textSize="16sp" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
设置活动
public class SettingsActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_preferences);
Toolbar toolbar = findViewById(R.id.toolbar);
try {
setSupportActionBar(toolbar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);
}
} catch (Exception e) {
e.printStackTrace();
}
getSupportFragmentManager().beginTransaction().replace(R.id.container, new SettingsFragment()).commit();
}
}
SettingsFragment
public class SettingsFragment extends PreferenceFragmentCompat {
@Override
public void onCreatePreferences(Bundle savedInstanceState, String s) {
addPreferencesFromResource(R.xml.preferences);
// implement your settings here
}
}
preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.preference.PreferenceCategory android:title="General Settings">
<androidx.preference.Preference
android:key="general_settings_key"
android:title="Preference Test" />
<androidx.preference.SwitchPreferenceCompat
android:defaultValue="true"
android:key="switch_settings_key"
android:title="Switch" />
</androidx.preference.PreferenceCategory>
<androidx.preference.PreferenceCategory android:title="Other">
<androidx.preference.Preference
android:key="about_settings_key"
android:title="About Me" />
</androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>
- 运行 设置活动和测试
如何创建设置屏幕? 我应该使用 PreferenceActivity 还是 PreferenceFragment?
注意- 文档没有帮助
我已经尝试过的:
- 使用 PreferenceActivity 但无法在其中实现简单的工具栏。
- 使用 PreferenceFragment 但太复杂而难以理解。
我想要的是使用 PreferenceFragment
的简单实现在 Android 3.0 及更高版本中,您应该使用显示应用设置的 PreferenceFragment。
创建一个 SettingsFragment:
public static class SettingsFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.preferences);
}
...
}
并在您的 activity 中显示它,就像任何其他片段一样:
public class SettingsActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
// Display the fragment as the main content.
getFragmentManager().beginTransaction()
.replace(android.R.id.content, new SettingsFragment())
.commit();
}
}
您可以在 activity xml 中包含一个工具栏,并在其下添加一个 SettingsFragment 容器,这样工具栏和您的 SettingsFragment 都会显示)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_catalog_root_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="-20dp">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/fragment_catalog_first_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00000000"
app:elevation="0dp"
>
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_catalog_first_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent_background"
android:elevation="4dp"
>
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/activity_catalog_fragment_cont"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</RelativeLayout>
如果您不使用 androidx(但最好使用),您可以在 xml 中使用工具栏,例如:
<android.support.v7.widget.Toolbar.....>
注意:您需要使用属性 android:layout_marginTop="?android:attr/actionBarSize"
(或者如果您使用的是 AppCompat 库:
?attr/actionBarSize
) 您的片段容器将出现在工具栏下方
在您的 activity 中,不要忘记为您的工具栏覆盖 onClick() 方法:
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
getActivity().onBackPressed();
}
});
这是在 android 中实现设置的完整工作代码:
将此库添加到您的项目
implementation 'androidx.preference:preference:1.1.0-alpha02'
创建 SettingsActivity 并将其添加到 Manifest
<activity android:name=".SettingsActivity"/>
activity_preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/color_primary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Settings"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@android:color/white"
android:textSize="16sp" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
设置活动
public class SettingsActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_preferences);
Toolbar toolbar = findViewById(R.id.toolbar);
try {
setSupportActionBar(toolbar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);
}
} catch (Exception e) {
e.printStackTrace();
}
getSupportFragmentManager().beginTransaction().replace(R.id.container, new SettingsFragment()).commit();
}
}
SettingsFragment
public class SettingsFragment extends PreferenceFragmentCompat {
@Override
public void onCreatePreferences(Bundle savedInstanceState, String s) {
addPreferencesFromResource(R.xml.preferences);
// implement your settings here
}
}
preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.preference.PreferenceCategory android:title="General Settings">
<androidx.preference.Preference
android:key="general_settings_key"
android:title="Preference Test" />
<androidx.preference.SwitchPreferenceCompat
android:defaultValue="true"
android:key="switch_settings_key"
android:title="Switch" />
</androidx.preference.PreferenceCategory>
<androidx.preference.PreferenceCategory android:title="Other">
<androidx.preference.Preference
android:key="about_settings_key"
android:title="About Me" />
</androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>
- 运行 设置活动和测试