Android DrawerLayout实现侧边栏(仿京东购物筛选侧边栏)

Android DrawerLayout实现侧边栏(仿京东购物筛选侧边栏)_第1张图片

1、Androidx不需要引入依赖

implementation 'com.android.support:design:29.0.0'

2、布局实现(主布局)



    
        
            layout="@layout/activity_right"/>
    
    android:layout_gravity="end"//左侧边栏和右侧边栏
        android:background="#ffffff"
        android:orientation="vertical"
        android:layout_width="300dp"
        android:layout_height="match_parent">
        
        
    

3、主文件使用

drawerLayout.openDrawer(GravityCompat.END);

你可能感兴趣的:(Android)