当前位置:   article > 正文

Android 抽屉组件DrawerLayout的简单使用_androidx.drawerlayout.widget.drawerlayout

androidx.drawerlayout.widget.drawerlayout

对于点击屏幕上按钮,从屏幕外上下左右划出一个菜单的场景,Android原生的DrawerLayout简单实用,这里记录一下

举例说明,效果如下

  1. <androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/home_drawer_layout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".ui.home.ReadKeyPointHomeActivity">
  7. <include
  8. android:id="@+id/content_layout"
  9. layout="@layout/layout_content" />
  10. <include
  11. android:id="@+id/menu_layout"
  12. layout="@layout/layout_menu"
  13. tools:visibility="gone" />
  14. </androidx.drawerlayout.widget.DrawerLayout>

第一个content_layout是显示布局,第二个layout_menu是菜单布局

这里需要注意一下,可能会出现以下问题

1、菜单布局设置visible gone无效

2、菜单布局点击布局之外不可关闭

跟写法有关,注意看下menu_layout的布局代码

  1. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. android:layout_gravity="start"
  4. android:focusable="true"
  5. android:clickable="true"
  6. android:layout_width="250dp"
  7. android:layout_height="match_parent">
  8. <View
  9. android:layout_width="200dp"
  10. android:layout_height="match_parent"
  11. android:background="#0f0"
  12. app:layout_constraintLeft_toLeftOf="parent" />
  13. <Button
  14. android:id="@+id/btnMenuClose"
  15. android:layout_width="50dp"
  16. android:layout_height="50dp"
  17. android:layout_marginLeft="200dp"
  18. android:layout_marginTop="100dp"
  19. app:layout_constraintLeft_toLeftOf="parent"
  20. app:layout_constraintTop_toTopOf="parent" />
  21. </androidx.constraintlayout.widget.ConstraintLayout>

可以看到

问题1是由于没有写android:layout_gravity="start"导致

问题2是由于没有写 android:focusable="true" android:clickable="true"导致

以上两点需要注意

然后是在Avtivity中的使用,非常的简单

  1. /**
  2. * 初始化抽屉组件
  3. */
  4. private fun initDrawerLayout() {
  5. // 禁止手势滑动
  6. mViewBinding.homeDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED)
  7. mViewBinding.homeContentLayout.btnUnitCheck.setOnClickListener {
  8. mViewBinding.homeDrawerLayout.openDrawer(GravityCompat.START, true)
  9. }
  10. mViewBinding.homeMenuLayout.btnMenuClose.setOnClickListener {
  11. closeDrawer()
  12. }
  13. }
  14. /**
  15. * 关闭抽屉组件
  16. */
  17. private fun closeDrawer() {
  18. mViewBinding.homeDrawerLayout.closeDrawer(GravityCompat.START, true)
  19. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/279516
推荐阅读
相关标签
  

闽ICP备14008679号