[Android Material Design]组件02 - DrawerLayout

效果图

DrawerLayout

关键代码

xml布局文件代码如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- 显示的内容区,只有一个Toolbar -->
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/purple_700"
            app:titleTextColor="@color/white"/>
    </RelativeLayout>

    <!-- 隐藏的侧滑内容,这里是ListView -->
    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/purple_700"
        android:scrollbars="none"
        android:choiceMode="singleChoice"
        android:fitsSystemWindows="true" />
</androidx.drawerlayout.widget.DrawerLayout>

布局文件最外侧是DrawerLayout,依次有两个子视图,第一个是RelativeLayout,这是主要的显示视图,第二个是ListView,这是侧滑内容,layout_gravity="start"指定在左侧侧滑。
kotlin逻辑代码如下:

val drawerLayout = findViewById<DrawerLayout>(R.id.drawer_layout)
val drawerList = findViewById<ListView>(R.id.left_drawer)
drawerList.adapter = ArrayAdapter<String>(this,
		R.layout.drawer_list_item, arrayOf("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n"))

// 初始化toolbar
val toolbar = findViewById<Toolbar>(R.id.toolbar)
setSupportActionBar(toolbar)
// 设置左上角的图标可以点击
supportActionBar!!.setHomeButtonEnabled(true)
// 左上角图标的左边加上一个返回的图标
supportActionBar!!.setDisplayHomeAsUpEnabled(true)

//ActionBarDrawerToggle用来设置在DrawerLayout状态改变时,toolbar状态也随之改变
mDrawerToggle = ActionBarDrawerToggle(
		this, drawerLayout, toolbar, R.string.drawer_open, R.string.drawer_close)
mDrawerToggle!!.syncState()
drawerLayout.addDrawerListener(mDrawerToggle!!)

drawerLayout一般和toolbar搭配使用,这两个控件通过ActionBarDrawerToggle关联起来,ActionBarDrawerToggle有如下3个方法可以被复写:

  • onDrawerOpened:监听滑出时的动作
  • onDrawerClosed: 监听关闭时的动作
  • onDrawerSlide: 监听滑动时的动作

源码地址

https://github.com/yurensan/MaterialDesignDemo

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值