个人笔记整理
最佳的UI体验——MaterialDesign实战
Toolbar
项目主题由AndroidManifest中的android:theme指定,默认继承的Theme.AppCompat.Light.DarkActionBar
含有ActionBar
指定一个不带ActionBar的主题:Theme.AppCompat.NoActionBar
(深色主题) 和Theme.AppCompat.Light.NoActionBar
(浅色主题)这两种主题可选
而AppTheme的style中指定的item有以下几种
使用TooBar
<FrameLayout 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.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" />
</FrameLayout>
使用xmlns:app 指定了一个新的命名空间。由于Material Design是在Android 5.0系统中才出现的,而很多的Material属性在5.0之前的系统中并不存在,那么为了能够兼容之前的老系统,我们就不能使用android:attribute 这样的写法了,而是应该使用app:attribute 。