Android--Material Design
作者:互联网
Material Design部分控件的使用
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<androidx.coordinatorlayout.widget.CoordinatorLayout
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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="?android:attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways|snap" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:src="@mipmap/ic_done"
android:elevation="8dp"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"// 指定滑出位置,start表示根据系统语言判断
// right表示右边,left表示左边
app:menu="@menu/nav_menu"
app:headerLayout="@layout/nav_header" />
</androidx.drawerlayout.widget.DrawerLayout>
Toolbar(控件)
1.首先修改res/values/themes.xml:
使用Toolbar代替ActionBar,因此需要指定一个不带ActionBar的主题,通常选择Theme.AppCompat.Light.NoActionBar(浅色)和Theme.AppCompat.NoActionBar(深色)
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.MaterialTest" parent="Theme.AppCompat.Light.NoActionBar">
</style>
</resources>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="?android:attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways|snap" />
android:theme 属性将Toolbar的主题指定为ThemeOverlay.AppCompat.Dark.ActionBar
app:popupTheme 属性将弹出的菜单项指定成淡色主题
使用:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
2.在Toolbar上添加几个按钮
在res->new->Directory,创建一个menu文件夹。然后menu->new->Menu resource file,创建一个toolbar.xml文件:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/backup"
android:icon="@drawable/backup"// 指定图标
android:title="Backup"// 指定文字
app:showAsAction="always"// 指定显示位置,always表示永远显示在Toolbar上
/>
<item
android:id="@+id/delete"
android:icon="@drawable/delete"
android:title="Delete"
app:showAsAction="ifRoom"// ifRoom表示屏幕空间足够的情况下显示在Toolbar上
/>
<item
android:id="@+id/settings"
android:icon="@drawable/settings"
android:title="Settings"
app:showAsAction="never"// never表示永远显示在菜单中
/>
</menu>
效果图如下:
滑动菜单–DrawerLayout(布局)
滑动菜单就是将一些菜单选项隐藏起来,而不是放置在主屏幕上,然后可以通过滑动的方式将菜单显示出来。
在DrawerLayout布局中允许放入两个直接子控件,第一个控件是主屏幕中显示的内容,第二个子控件是滑动菜单中显示的内容。
1.为了提醒用户使用这个功能,我们在Toolbar的最左边加入一个导航按钮,点击之后就会打开滑动菜单
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
...
DrawerLayout mDrawLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBar actionBar = getSupportActionBar();// 获取Actionbar实例
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);// 让导航按钮显示出来
actionBar.setHomeAsUpIndicator(R.mipmap.ic_menu);// 设置图标
}
}
@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()){
case android.R.id.home:
mDrawLayout.openDrawer(GravityCompat.START);// 打开滑动菜单
break;
}
return true;
}
协调布局–CoordinatorLayout
CoordinatorLayout可以监听其所有子控件的各种事件,然后自动帮助我们做出最为合理的响应。
卡片式布局–CardView
CardView是用来实现卡片式布局效果的重要控件。
1.基本使用:
<androidx.cardview.widget.CardView
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="wrap_content"
app:cardCornerRadius="4dp"// 指定卡片圆角的弧度,数值越大,圆角的弧度也越大
app:elevation="5dp">// 指定卡片高度,高度值越高,投影范围越大
<TextView
android:id="@+id/fruit_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:textSize="16sp" />
</androidx.cardview.widget.CardView>
应用程序栏布局–AppBarLayout
1.为了防止CoordinatorLayout中的RecyclerView遮挡Toolbar
第一步将 Toolbar嵌套到AppBarLayout中,第二步给RecyclerView指定一个布局行为。
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="?android:attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways|snap" />// scroll表示当
// RecyclerView向上滚动的时候,Toolbar会跟着一起向上滚动并实现隐藏
// ,enterAlways表示向下,snap表示当Toolbar还没有完全隐藏或显示的时候,
// 会根据当前滚动的距离,自动选择隐藏还是显示
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scolling_view_behavior"
/>
下拉刷新–SwipeRefreshLayout(布局)
1.基本使用:
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2.下拉刷新逻辑:
swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_refresh);
swipeRefreshLayout.setColorSchemeResources(R.color.design_default_color_primary);// 设置下拉刷新进度条的颜色
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
refreshFruits();
}
});
标签:布局,控件,菜单,--,Material,toolbar,滑动,Android,Toolbar 来源: https://blog.csdn.net/weixin_56504344/article/details/120494631