当前位置:   article > 正文

Android5.0特性 - DrawerLayout的俩种使用方式_drawerlayout 拖拽

drawerlayout 拖拽

在我的印象中,因为Android 5.0 的出现,让其在UI方面进一步的赶上了IOS,所以我把Design库,V4,V7包下的控件都会逐一进行讲解,本篇带来的是DrawerLayout的使用(虽然已经很成熟,但是当做回顾)

初始UI:
这里写图片描述
方式一:因为DrawerLayout又名抽屉布局,所以我们是可以直接拖拽的,至于拖拽方向,可以通过Start与End进行确定
这里写图片描述

方式二:通过DrawerLayout.openDrawer(GravityCompat.START)进行事件显示(这里显示的也是我们最后的效果图(第一个方式最终显示的效果是一样的,只因表明拖拽的效果),有点丑请见谅> <)
这里写图片描述

注意点

  1. 首先我们要注意DrawerLayout为最外层布局
  2. 第一个视图为当前的主显示视图,我们一般都设置为Fragment
  3. DrawerLayout中的布局,我们可以自定义控件进行显示,也可以使用NavigationView进行处理(BottomNavigationView的使用与问题处理方案

MainActivity

package com.example.DrawerLayout;

import android.os.Bundle;
import android.app.Activity;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

	private TextView mMainText;
	private DrawerLayout mLayout;
	private TextView mLayoutText;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		initView();
	}

	private void initView() {
		//最外层的DrawerLayout布局
		mLayout = (DrawerLayout) findViewById(R.id.layout);
		//主页面显示的按键
		mMainText = (TextView) findViewById(R.id.tv_mian);
		//DrawerLayout的内部事件
		mLayoutText = (TextView) findViewById(R.id.tv_layout);
		//主页面的点击事件
		mMainText.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				mLayout.openDrawer(GravityCompat.START);
			}
		});
		//DrawerLayout内部的点击事件
		mLayoutText.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				Toast.makeText(MainActivity.this, "这里是DrawerLayout的内部事件", 0).show();
			}
		});
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

activity_main

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/tv_mian"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="点击之后出现我们的DrawerLayout布局" />
    </FrameLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="#fff"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/tv_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#000"
            android:text="DrawerLayout布局"
            android:textColor="#f00" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#000"
            android:text="DrawerLayout布局"
            android:textColor="#f00" />
    </LinearLayout>

</android.support.v4.widget.DrawerLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/279665
推荐阅读
相关标签
  

闽ICP备14008679号