Android 实现DrawerLayout侧拉

效果图

简单布局展示  没有任何功能

只做了 打开/关闭 侧拉提示

 

XML布局页面

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:id="@+id/ddd">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <FrameLayout
            android:id="@+id/frag"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="9"></FrameLayout>
        <RadioGroup
            android:id="@+id/group"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">
            <RadioButton
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:id="@+id/but1"
                android:text="首页"
                android:gravity="center"
                android:button="@null"/>
            <RadioButton
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:id="@+id/but2"
                android:text="视频"
                android:gravity="center"
                android:button="@null"/>
            <RadioButton
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:id="@+id/but3"
                android:text="我的"
                android:gravity="center"
                android:button="@null"/>
        </RadioGroup>

    </LinearLayout>
    <LinearLayout
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_gravity="left"
        android:background="#ddd">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
        <ImageView
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:src="@drawable/imggg"
            android:layout_marginLeft="10dp"/>
        <EditText
            android:layout_marginTop="50dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="抱着回忆旅行"/>
        </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <EditText
            android:layout_marginTop="50dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="激活会员"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="个性装扮"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="QQ钱包"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="我的收藏"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="我的相册"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="我的文件"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="免流量特权"/>
        </LinearLayout>
        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="50dp"
            android:textSize="15sp"
            android:text="设置"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="50dp"
            android:textSize="15sp"
            android:layout_marginLeft="5dp"
            android:text="夜间"
            android:textColor="#44f"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="50dp"
            android:textSize="15sp"
            android:layout_marginLeft="5dp"
            android:text="北京"
            android:textColor="#f44"/>
        </LinearLayout>
    </LinearLayout>



</android.support.v4.widget.DrawerLayout>

主页面代码MainActivity

public class MainActivity extends BaseActivity {


    private FrameLayout frag;
    private RadioGroup group;
    private FragmentTransaction fragmentTransaction;
    private FragmentA fragmentA;
    private FragmentB fragmentB;
    private FragmentC fragmentC;
    private DrawerLayout ddd;

    @Override
    protected void initData() {
        ddd.addDrawerListener(new DrawerLayout.DrawerListener() {
            @Override
            public void onDrawerSlide(@NonNull View view, float v) {

            }

            @Override
            public void onDrawerOpened(@NonNull View view) {
                Toast.makeText(MainActivity.this,"打开",Toast.LENGTH_SHORT).show();
            }

            @Override
            public void onDrawerClosed(@NonNull View view) {
                Toast.makeText(MainActivity.this,"关闭",Toast.LENGTH_SHORT).show();
            }

            @Override
            public void onDrawerStateChanged(int i) {

            }
        });

    }
    @Override
    protected void initView() {
        
        ddd = findViewById(R.id.ddd);


    }
    @Override
    protected int getLayoutId() {
        return R.layout.activity_main;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值