Android实现Material Design风格的设置页面(滑动开关控件)

前言

本文链接 http://www.alijava.com/material-setting/ 转载请注明出处

参考了这篇文章 Material Design 风格的设置页面

笔者对原文章做了3个改进:

  • 把勾选框 改成了 Switch 的滑动开关,Material Design 更彻底

  • 替换后的 SwitchCompat 与整个 Preference 点击事件联动,保存到SharedPreferences

  • 在页面上方增加了 ToolBar,更贴近真实项目场景

blog.csdn.net/never_cxb

项目源代码地址(欢迎star) https://github.com/studychen/SeeNewsV2

基础:PreferenceScreen和PreferenceCategory

新建 res/xml/preferences.xml

Note: 是 xml 文件夹,不是 layout 文件夹

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!-- res/xml/preferences.xml -->
<?xml version="1.0" encoding="utf-8"?><!--最新栏目的新闻-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout="@layout/preference_item"
android:title="@string/title_activity_setting">
<PreferenceCategory
android:layout="@layout/preference_category_widget"
android:title="基本设置">
<CheckBoxPreference
android:key="@string/save_net_mode"
android:layout="@layout/preference_item"
android:summary="仅在Wi-Fi环境下才自动加载图片"
android:title="省流量模式"/>
<Preference
android:layout="@layout/preference_item"
android:summary="删除已缓存的文章内容及图片"
android:title="清空缓存" />
</PreferenceCategory>
<PreferenceCategory
android:layout="@layout/preference_category_widget"
android:title="其他说明">
<Preference
android:layout="@layout/preference_item"
android:summary="V 1.0"
android:title="当前版本" />
<Preference
android:layout="@layout/preference_item"
android:summary="博客:http://blog.csdn.net/never_cxb"
android:title="TomChen" />
</PreferenceCategory>
</PreferenceScreen>

android:layout 实现 Material Design 布局

上面

1
2
3
4
5
<PreferenceCategory
android:layout="@layout/preference_category_widget"
android:title="基本设置">
<!-- ... -->
</PreferenceCategory>

使用 android:layout="@layout/preference_category_widget" 改变 PreferenceCategory 布局

Note: 一定要使用系统的 id android:id="@android:id/title"

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- preference_category_widget.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical">
<TextView
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingTop="16dp"
android:textColor="@color/primary"
android:text="indroduce"
android:textSize="14sp" />
</LinearLayout>

preference_item.xml 定制 CheckBoxPreference 布局,勾选框或者滑动开关的布局

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- preference_item.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="?android:listPreferredItemHeight"
android:orientation="horizontal"
android:padding="16dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:singleLine="true"
android:text="title"
android:textSize="16sp" />
<TextView
android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:text="summary"
android:textColor="#AAAAAA"
android:textSize="14sp" />
</RelativeLayout>
<LinearLayout
android:id="@android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:orientation="vertical"/>
</LinearLayout>

在PreferenceFragment载入设置布局文件

1
2
3
4
5
6
7
public class SettingFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
}
}

这样就实现了原文里的效果图:

blog.csdn.net/never_cxb

CheckBox改为开关控件SwitchCompat

修改 CheckBoxPreference

使用 android:widgetLayout 帮助我们修改CheckBoxPreference布局。

建立 layout/switch_layout.xml 文件

1
2
3
4
5
6
7
<!-- switch_layout.xml -->
<!--此处代码有bug,下面会说明如何修正-->
<android.support.v7.widget.SwitchCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOff="OFF"
android:textOn="ON" />

在原来的CheckBoxPreference加上android:widgetLayout="@layout/switch_layout"

1
2
3
4
5
6
7
<!-- res/xml/preferences.xml -->
<CheckBoxPreference
android:key="@string/save_net_mode"
android:layout="@layout/preference_item"
android:summary="仅在Wi-Fi环境下才自动加载图片"
android:title="省流量模式"
android:widgetLayout="@layout/switch_layout" />

把控件是否选中保存到SharedPreferences中

1
2
<!-- res/values/strings.xml -->
<string name="save_net_mode">save_net_mode</string>

设置 android:key="@string/save_net_mode"属性,这是为了后续获取CheckBoxPreference

保存到 SharedPreferences 为了方便也使用这个字符串 save_net_mode

Java代码中用getPreferenceManager().findPreference("key的名称")来获取

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
final CheckBoxPreference checkboxPref = (CheckBoxPreference) getPreferenceManager()
.findPreference(getString(R.string.save_net_mode));
checkboxPref.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
/**
* @param preference The changed Preference.
* @param newValue The new value of the Preference.
* @return True to update the state of the Preference with the new value.
*/
@Override
public boolean onPreferenceChange(Preference preference, Object newValue) {
boolean checked = Boolean.valueOf(newValue.toString());
//保存到SharedPreferences中
PrefUtils.setSaveNetMode(checked);
Logger.d("Pref " + preference.getKey() + " changed to " + newValue.toString());
return true;
}
});

onPreferenceChange 没有调用

在代码加上了Log输出,但是点击开关控件,却没有反应。

笔者把android:widgetLayout="@layout/switch_layout"去掉
使用刚才的CheckBox,点击勾选或者取消勾选,发现可以保存到SharedPreferences

1
2
D/LoggerTag﹕ ║ Pref save_net_mode changed to false
D/LoggerTag﹕ ║ Pref save_net_mode changed to true

修改xml的SwitchCompat布局

增加 android:id="@android:id/checkbox"

增加

1
2
3
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"

变成如下代码

1
2
3
4
5
6
7
8
9
10
<!-- switch_layout.xml -->
<android.support.v7.widget.SwitchCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:textOff="OFF"
android:textOn="ON" />

这样点击开关按钮,按钮开或者关,会将 truefalse 保存到 SharedPreferences

增加ToolBar

新增 layout/setting.xml

res/xml/preferences.xml中增加ToolBar是不可能的
因为它的父节点是PreferenceScreen

我们新建一个 layout/setting.xml
在这个里面使用 Toolbar,下面的 FrameLayout 展示刚才的设置界面

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- setting.xml -->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<!--Toolbar-->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_preference"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

标题设置

1
getFragmentManager().beginTransaction().replace(R.id.content_frame, new SettingFragment()).commit();

把上面的 FrameLayout 布局区域设为 SettingFragment

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public class SettingActivity extends BaseActivity {
@InjectView(R.id.toolbar_preference)
Toolbar mToolbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_setting);
ButterKnife.inject(this);
initToolbar();
getFragmentManager().beginTransaction().replace(R.id.content_frame, new SettingFragment()).commit();
}
/**
* 初始化Toolbar
*/
private void initToolbar() {
mToolbar.setTitle(getResources().getString(R.string.title_activity_setting));
mToolbar.setTitleTextColor(getResources().getColor(R.color.white));
setSupportActionBar(mToolbar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setHomeAsUpIndicator(R.drawable.ic_left_back);
actionBar.setDisplayHomeAsUpEnabled(true);
}
}
/**
* 选项菜单
*/
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
}
return false;
}
}

通过 actionBar.setHomeAsUpIndicator(R.drawable.ic_left_back);
增加了一个返回的白色箭头

通过 android.R.id.home获取白色箭头的点击事件,返回上一个Activity

本文链接 http://www.alijava.com/material-setting/ 转载请注明出处

项目源代码地址(欢迎star) https://github.com/studychen/SeeNewsV2

参考文章