前言
郭神出品,必属精品,记得在刚做Android开发的时候,当时买了Android第一行代码第一版,看了之后感觉内容通俗易懂,收获颇多,当时还不知道作者是郭神,后来在CSDN上看了很多他写的文章,发现原来作者就是郭神,现在他出了第二版,果断将书买了回来,书很早就看完了,今天将书籍翻了出来看了一下,决定将自己的想法给记录一下.
第十二章 最佳的UI体验------Material Design实践
其实长久以来,大多数人都认为Android系统的UI并不算美观,至少没有iOS系统的美观.以至于很多IT公司在进行应用界面设计的时候,为了保证平台的统一性,强制要求Android端的界面风格必须和iOS端一致,这种情况在工作中很常见,为了解决这个问题,谷歌也祭出了杀手锏,在2014Google I/O大会上重磅推出了一套全新的界面设计语言------Material Design
12.1 什么是Material Design
Material Design是由谷歌的设计工程师基于传统优秀的设计原则,结合丰富的创意和科学技术所发明的一套全新的界面设计语言,包含了视觉,运动,互动效果等特性.为了做出表率,谷歌从Android5.0系统开始,就将所有的应用都是用Material Design风格来进行设计,但是一开始Material Design主要是面向UI设计人员的,很多开发者根本搞不清楚什么样的界面和效果才叫Material Design,就算搞清楚了,实现起来也很费劲,当时Android中并没有提供相应的API支持,一切要开发者从零写起.
谷歌当然也意识到了这个问题,于是在2015年的Google I/O大会上推出了一个Design Support库,这个库中最具代表性的一些控件和效果进行了封装,使得开发者在即使不了解Material Design的情况也能非常轻松地将自己的应用Material化.
12.2 Toolbar
Toolbar使我们接触的第一个Material控件,虽说对于Toolbar你暂时应该还是比较陌生的,但是对于它的另一个相关控件ActionBar.你应该就熟悉了.Toolbar的强大之处在于,他不仅继承了ActionBar的所有功能,而且灵活性很高,可以配合其他控件来完成一些Material Design的效果.
如下代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:background="@color/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:layout_height="?attr/actionBarSize"/>
</FrameLayout>
Toolbar是由appcompat-v7库提供的,这里我们给Toolbar指定了一个id,将它的宽度设置为match_parent,高度设置为actionBar的高度,背景色设置为colorPrimary,由于我们刚才在styles.xml中将程序的主题指定成了淡色主题,因此Toolbar现在也是淡色主题,而Toolbar上面的各种元素就会自动使用深色系,这是为了和主体颜色区别开,但是这个效果会看起来很差,之前使用ActionBar时文字都是白色的, 现在变成了黑色的会很难看.那么为了能让Toolbar单独使用深色主题,这里我们使用android:theme属性,将Toolbar的主题指定成了ThemeOverlay.AppCompat.Dark.ActionBar.但是这样指定完了之后又会出现新的问题,如果Toolbar中有菜单按钮,那么弹出的菜单项也会变成深色主题,这样就再次变得十分难看.于是这里使用了app:popupThme这个属性单独将弹出的菜单项指定成淡色在主题,之所以使用app:popupTheme,是因为popupTheme这个属性是在Android5.0系统中新增的,我们使用app:popupTheme的话就可以兼容Android5.0以下的系统了.
代码中设置:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
}
运行效果:
12.3 滑动菜单
滑动菜单可以说是Material Design最常见的效果了,在许多的应用中,都有滑动菜单的功能.
12.3.1 DrawerLayout
DrawerLayout它是一个布局,在布局中允许放入两个直接子控件,第一个子控件是主屏幕中显示的内容,第二个子控件是滑动菜单中显示的内容.它是由support-v4库提供的,关于第二个子控件有一点需要注意,layout_gravity这个属性是必须指定的,因为我们需要告诉DrawerLayout滑动菜单是在屏幕的左边还是右边,指定left表示滑动菜单在左边,指定right表示滑动菜单在右边.如果指定start的话,表示会根据系统语言进行判断,如果系统语言是从左往右的,比如英语,汉语,滑动菜单就在左边, 如果系统语言是从右往左的,比如阿拉伯语,滑动菜单就在右边.
12.4 悬浮按钮和可交互提示
12.4.1 FloatingActionButton
FloatingActionButton是Design Support库中提供的一个控件,这个控件可以帮助我们比较轻松地实现悬浮按钮的效果.
FloatingActionButton属性介绍:
- app:elevation: 给FloatingActionButton指定一个高度值,高度值越大,投影范围越大,但是投影效果越淡,高度值越小,投影范围越小,但是投影的效果越浓
- app:backgroundTing: FloatingActionButton背景颜色
12.4.2 Snackbar
12.4.3 Coordinatorlayout
Coordinatorlayout可以说是一个加强版的FrameLayout,这个布局也是由Design Support库提供的,他在普通情况下的作用和FrameLayout基本一致 ,不过既然是Design Support库中提供的布局,那么必然有一些Material Design的魔力了.事实上Coordinatorlayout可以监听所有子控件的各种事件,然后自动帮助我们做出最为合理的相应,故又被称作协作布局.
12.5 卡片式布局
12.5.1 CardView
CardView是用于实现卡片布局效果的重要控件,由appcompat-v7库提供,实际上,CardView也是一个FrameLayout,只是额外提供了圆角和阴影等效果,看上去会有立体的感觉.
12.5.2 AppBarLayout
在开发中,AppBarLayout一般是嵌套Toolbar使用,并设置app:layout_scrollFlags属性,从而实现Material Design的效果
12.6 下拉刷新SwipeRefreshlayout
官方提供的下拉刷新控件
12.7 可折叠式标题栏
12.7.1 CollapsingToolbarLayout
顾名思义,CollapsingToolbarLayout是一个作用于Toolbar基础之上的布局,他也是由Design Support库提供的.CollapsingToolbarLayout可以让Toolbar的效果变得更加丰富,不仅展示一个标题栏,而是能够实现非常华丽的效果.不过CollapsingToolbarLayout是不能独立存在的,它在设计的时候就被限定只能作为AppBarlayout的直接子布局来使用.
最佳实践
看代码:
activity_material_design.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:fitsSystemWindows="true"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="250dp">
<android.support.design.widget.CollapsingToolbarLayout
android:fitsSystemWindows="true"
app:collapsedTitleGravity="center"
app:expandedTitleGravity="center|bottom"
android:id="@+id/collapsing_toolbar"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:contentScrim="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:scaleType="fitXY"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
android:src="@drawable/timg"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
app:layout_anchor="@+id/appbar"
app:layout_anchorGravity="bottom|right"
android:layout_margin="20dp"
app:fabSize="normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<android.support.v4.widget.NestedScrollView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
<ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/> <ImageView
android:padding="10dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
menu_material_design.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:title="test"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:showAsAction="never"
android:icon="@mipmap/ic_launcher"/>
</menu>
MaterialDesignActivity
public class MaterialDesignActivity extends AppCompatActivity{
CollapsingToolbarLayout collapsingToolbar;
Toolbar toolbar;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_material_design);
collapsingToolbar = findViewById(R.id.collapsing_toolbar);
toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
collapsingToolbar.setTitle("erdai66sdfawsdfasdfasdfasdfasdf6");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_material_design,menu);
return true;
}
}
主题设置--在res下新建一个value-v21的文件夹,创建一个styles.xml
<style name="MaterialDesignTheme" parent="AppTheme">
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
效果展示:
展开的时候:
折叠的时候: