DrawerLayout和NavigationView的简单实用

1、添加依赖:

compile ‘com.android.support:design:25.3.0‘     //5.0特性

compile ‘de.hdodenhof:circleimageview:2.1.0‘    //用于图片显示的圆形化

2、创建一个menu文件的nav_menu.xml文件

<?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android">    <group android:checkableBehavior="single"/>

<item        android:id="@+id/item_one"        android:icon="@mipmap/ic_launcher"        android:title="one"/>

<item        android:id="@+id/item_two"        android:icon="@mipmap/ic_launcher"        android:title="two"/>

<item        android:id="@+id/item_three"        android:icon="@mipmap/ic_launcher"        android:title="three"/>

<item        android:id="@+id/item_four"        android:icon="@mipmap/ic_launcher"        android:title="four"/>

</menu><group/>标签表示一个组,checkableBehavior="single"表示下面的<item/>只能单选,icom属性指定菜单项图标,title属性指定菜单项显示的文字

3、创建一个nav_header.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"                android:layout_width="match_parent"                android:layout_height="180dp"                android:background="?attr/colorPrimary"                android:padding="10dp">

<de.hdodenhof.circleimageview.CircleImageView        android:id="@+id/ic_image"        android:layout_width="70dp"        android:layout_height="70dp"        android:layout_centerInParent="true"        android:src="@mipmap/ic_launcher_round"/>

<TextView        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_alignParentStart="true"        android:layout_below="@+id/ic_image"        android:layout_marginTop="10dp"        android:gravity="center"        android:text="GoodBoy"        android:textSize="18sp"/>

</RelativeLayout>
其中android:background="?attr/colorPrimary"将背景设置成系统颜色,<de.hdodenhof.circleimageview.CircleImageView/>是将图片圆形化

4、将menu和headerLayout设置到main中
<android.support.v4.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">

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

<include layout="@layout/toolbar"/>    </FrameLayout>

<android.support.design.widget.NavigationView        android:id="@+id/nav_view"        android:layout_width="match_parent"        android:layout_height="match_parent"        android:layout_gravity="start"        app:headerLayout="@layout/nav_header"        app:menu="@menu/nav_menu">

</android.support.design.widget.NavigationView>

</android.support.v4.widget.DrawerLayout>其中</android.support.v4.widget.DrawerLayout>是由support-v4库提供的就是滑动菜单, 第一个子控件是FrameLayout:作为主屏幕要显示的内容(里面嵌套了一个toolbar),第二个子控件是滑动菜单中显示的内容即</android.support.design.widget.NavigationView>。现在补充一下android:layout_gravity="start" 这个属性是必须指定的,指定left表示滑动菜单在左边,right表示滑动菜单在右边;而start是根据系统语言判断:比如汉语、英语作为系统语言是从左往右->滑动菜单就在左边,相反则在右边。
:toolbar代码:
<android.support.v7.widget.Toolbar    xmlns:android="http://schemas.android.com/apk/res/android"    android:id="@+id/toolbar"    android:background="@color/colorPrimary"    android:minHeight="?attr/actionBarSize"    android:layout_width="match_parent"    android:layout_height="wrap_content">

<TextView        android:id="@+id/tv_tb_title"        android:layout_gravity="center"        android:textSize="20sp"        android:layout_width="wrap_content"        android:layout_height="wrap_content"/>

</android.support.v7.widget.Toolbar>加一个TextView是为了提供选择标题是否居中,要居中则使用其TextView,另外设置toolbar.setTitle("")即可5、Activity主要代码:
setContentView(R.layout.nav_main);Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);TextView textView = (TextView) findViewById(R.id.tv_tb_title);textView.setText("Navigation");toolbar.setTitle("");setSupportActionBar(toolbar);--------------------------------------------------------------------------------效果图:


				
时间: 2024-11-05 20:25:17

DrawerLayout和NavigationView的简单实用的相关文章

简单实用的PHP防注入类实例

这篇文章主要介绍了简单实用的PHP防注入类实例,以两个简单的防注入类为例介绍了PHP防注入的原理与技巧,对网站安全建设来说非常具有实用价值,需要的朋友可以参考下 本文实例讲述了简单实用的PHP防注入类.分享给大家供大家参考.具体如下: PHP防注入注意要过滤的信息基本是get,post,然后对于sql就是我们常用的查询,插入等等sql命令了,下面我给各位整理两个简单的例子,希望这些例子能给你网站带来安全. PHP防注入类代码如下: 复制代码 代码如下: <?php /**  * 参数处理类  *

微信公众平台之超简单实用的天气预报后台实现

微信公众平台之超简单实用的天气预报后台实现 概述,前段时间我在开发一个自己的微信公众平台,需要实现天气预报功能,在网上度娘了下,实现天气预报的接口API还蛮多的,有:中国气象局.雅虎和新浪等,中国天气预报接口需要全国的编码,雅虎的有时候访问不了,研究了下还是新浪提供的接口比较简单实用.新浪天气预报API的URL是http://php.weather.sina.com.cn/xml.php?city=%B1%B1%BE%A9&password=DJOYnieT8234jlsK&day=0.其

FMDB数据库的简单实用

引入和FMDB第三方类库,  demo地址:http://pan.baidu.com/s/1c0pbfxA 1 #define dataBasePath [[(NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)) lastObject]stringByAppendingPathComponent:dataBaseName] 2 #define dataBaseName @"MyDatabase

简单实用的CSS网页布局中文排版技巧

由于汉字的特殊性,在css网页布局中,中文排版有别于英文排版.排版是一个麻烦的问题,小编认为,作为一个优秀的网页设计师和网页制作人员,掌握一些简单的中文排版技巧是不可或缺的,所以今天特意总结了几个简单实用的技巧,希望对大家有所帮助. 一.如何设定文字字体.颜色.大小等 font-style设定斜体,比如font-style:italic font-weight设定文字粗细,比如font-weight:bold font-size设定文字大小,比如font-size:12px line-heigh

Java对象简单实用(计算器案例)

Java对象简单实用(计算器案例) 对 Java中的对象与属性,方法的使用,简单写了个案例 1 import java.util.Scanner; 2 class Calculste 3 { 4 int a; //定义两个整数 5 int b; 6 String option; //定义接收操作符的字符串 7 public void count(){ 8 9 //对操作符进行判断 10 switch(option){ 11 case "+": 12 System.out.println

php简单实用的操作文件工具类(创建、移动、复制、删除)

php简单实用好用的文件及文件夹复制函数和工具类(创建.移动.复制.删除) function recurse_copy($src,$dst) {  // 原目录,复制到的目录 $dir = opendir($src); @mkdir($dst); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) )

Mac中Git的简单实用(6) --- 分支管理策略

今天我来介绍下Git,Git是一款免费.开源的分布式版本控制系统. 我们在上一个学习了Git分支冲突管理. 这一章,我们要学习Git的Fast-forward模式.保存恢复现场 .测试的feature分支. Mac中Git的简单实用(1) - Git基本命令(1) Mac中Git的简单实用(2) - Git基本命令(2) Mac中Git的简单实用(3) - Github远程仓库 Mac中Git的简单实用(4) - 分支branch管理 Mac中Git的简单实用(5) - Git分支冲突管理 1.

JavaScript 日期格式化 简单实用

JavaScript 日期格式化 简单实用 代码如下,引入jquery后直接后加入以下代码刷新可测试 Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.

关于git的简单实用

这里主要介绍的是 "开源中国"的使用  ;其实就相当于github的中国版.只不过服务器在中国 ,所以速度上稍微快一些. 好 废话不多说直接上代码 ! 整个过程都是在Mac终端中完成: 首先 .要创建一个文件夹用来装我们的项目  在创建项目之前我们先来熟悉一下终端的帮助功能 , 在终端中 如果想调出git 的帮助直接可以输入 git help指令 这样就可以调出关于git的所有帮助 如果 知道详细的某个关键字怎么使用也很简单 直接输入git help checkout *退出输入wq