Android-侧滑菜单(三)

news/2024/11/29 21:41:49/

新整理的仿QQ侧滑菜单实现的例子,使用android.support.v4.widget.DrawerLayout和android.support.design.widget.NavigationView实现的,下面先上两张效果图:

效果图也看到了,那么咱们废话不多说,直接上代码:

注意:要在app的build.gradle里添加下面这句,不然可能会报错的

compile 'com.android.support:design:25.2.0'

首先是布局文件activity_slidetest.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/activity_na"android:layout_width="match_parent"android:layout_height="match_parent"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="@color/colorPrimary"android:gravity="center_vertical"android:orientation="horizontal"><ImageViewandroid:id="@+id/main_menu"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_margin="20dp"android:src="@mipmap/ic_launcher_round" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="16dp"android:layout_weight="1"android:text="侧滑菜单"android:textSize="20sp" /><ImageViewandroid:id="@+id/search"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_margin="20dp"android:src="@mipmap/ic_launcher" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:text="主页"android:textSize="22sp" /></LinearLayout><android.support.design.widget.NavigationView xmlns:app="http://schemas.android.com/apk/res-auto"android:id="@+id/nav"android:layout_width="wrap_content"android:layout_height="match_parent"android:layout_gravity="left"android:fitsSystemWindows="true"app:headerLayout="@layout/head"app:menu="@menu/new_menu"></android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

因为侧滑菜单是隐藏在屏幕左侧的,所以在NavigationView里需要设置android:layout_gravity="left",NavigationView里还使用到了app:headerLayout="@layout/head"和app:menu="@menu/new_menu",那么下面我们就来创建这两个布局文件

先来创建head.xml文件,直接在layout文件夹下创建即可,我这里只是简单的一个例子,为了方便里面随便放了两个控件,实际开发中药根据实际情况来布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:orientation="vertical"><ImageViewandroid:id="@+id/person"android:layout_width="72dp"android:layout_height="72dp"android:layout_marginTop="42dp"android:src="@mipmap/ic_launcher_round" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="24dp"android:text="时代新人"android:textSize="20sp" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginBottom="18dp"android:layout_marginTop="12dp"android:text="跟上时代的步伐,勇往直前"android:textSize="16sp" />
</LinearLayout>

再创建new_menu.xml文件,这个文件需要先在res下新建一个文件夹menu,然后再menu文件夹下创建new_menu.xml文件,这个xml文件名自己随意起名就可以:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"><groupandroid:checkableBehavior="single"><itemandroid:id="@+id/favorite"android:icon="@mipmap/ic_launcher"android:title="    会员"/><itemandroid:id="@+id/wallet"android:title="    钱包"android:icon="@mipmap/ic_launcher"/><itemandroid:id="@+id/photo"android:title="    相册"android:icon="@mipmap/ic_launcher"/><itemandroid:id="@+id/dress"android:title="    装扮"android:icon="@mipmap/ic_launcher"/><itemandroid:id="@+id/file"android:title="    文件"android:icon="@mipmap/ic_launcher" /></group>
</menu>

在这里我们看到有个group,有group的话就相当于把下面的item都放在了这个组里面,可以设置选中几项,相当于单选、多选,android:checkableBehavior="single"单选,如果不需要设置多选,可去掉group,直接写item即可,有多少项写多少项。

最后我们再看下方法实现的类文件SlideTestActivity.java

package com.junto.leftrightslideactivity.activity;import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.design.widget.NavigationView;
import android.support.v4.widget.DrawerLayout;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;import com.junto.leftrightslideactivity.R;/*** Created by WangJinyong on 2018/9/27.*/public class SlideTestActivity extends Activity {private DrawerLayout drawerLayout;private NavigationView navigationView;ImageView menu;@Overrideprotected void onCreate(@Nullable Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_slidetest);initView();}private void initView(){drawerLayout = findViewById(R.id.activity_na);navigationView = findViewById(R.id.nav);menu = findViewById(R.id.main_menu);View headerView = navigationView.getHeaderView(0);//获取头布局menu.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {//点击菜单,跳出侧滑菜单if (drawerLayout.isDrawerOpen(navigationView)){drawerLayout.closeDrawer(navigationView);}else{drawerLayout.openDrawer(navigationView);}}});navigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {@Overridepublic boolean onNavigationItemSelected(@NonNull MenuItem item) {Toast.makeText(SlideTestActivity.this,item.getTitle().toString(),Toast.LENGTH_SHORT).show();
//                drawerLayout.closeDrawer(navigationView);return true;}});}
}

上面代码中我注释掉一行drawerLayout.closeDrawer(navigationView),这行的意思是侧滑菜单的item选中关掉侧滑菜单。到这里放QQ侧滑菜单就做好了,里面的细节内容还需要根据实际开发来完善,这种文章虽然已经太普通不过了,但是如果有遇到的朋友想看的还是希望能帮助有需要的朋友,写的不足之处还望大家多多指教。

demo源码:https://download.csdn.net/download/u013184970/10690420

上一篇文章:Android-屏幕左右侧滑(二)


http://www.ppmy.cn/news/278580.html

相关文章

Compose 实现页面侧滑返回

最近研究了一下&#xff0c;使用Compose如何去做类似ios的全屏侧滑返回效果&#xff0c;下面展示成果&#xff1a; 总共需要几个功能进行搭配使用&#xff1a; 1.Accompaint的Pager模块 2.通过反射使当前窗口透明以及不透明 思路分析&#xff1a; pager类似于android原生的…

RSA算法基础原理

目录 一、简介二、缺点三、数论基础1. 素数2. 模运算3. 互质关系4. 欧拉函数第一种情况第二种情况第三种情况第四种情况第五种情况 5. 欧拉定理6. 模反元素 四、RSA密钥生成步骤1. 随机选择两个不相等的质数p和q。2. 计算p和q的乘积n。3. 计算n的欧拉函数φ(n)。4. 随机选择一个…

在CSDN逮到一个阿里10年老测试,聊过之后收益良多...

老话说的好&#xff0c;这人呐&#xff0c;一但在某个领域鲜有敌手了&#xff0c;就会闲得蛋疼。 前几天我在上班摸鱼刷CSDN的时候认识了一位阿里测试大佬&#xff0c;在阿里工作了10年&#xff0c;因为本人天赋比较高&#xff0c;平时工作也兢兢业业&#xff0c;现在企业内有…

Spring高手之路2——深入理解注解驱动配置与XML配置的融合与区别

文章目录 1. 配置类的编写与Bean的注册2. 注解驱动IOC的依赖注入与XML依赖注入对比3. Spring中组件的概念4. 组件注册5. 组件扫描5.1 使用ComponentScan的组件扫描5.2 xml中启用component-scan组件扫描5.3 不使用ComponentScan的组件扫描 6. 组件注册的其他注解7. 将注解驱动的…

数据管理治理的发展趋势

当前&#xff0c;数据驱动型业务战略与信息产品的潜力比以往任何时候都要大。对于多数企业机构而言&#xff0c;数据分析与管理已成为它们业务战略的重要驱动力。数据分析与管理领导者正在通过挖掘数据价值来驱动数字化转型、创造盈利机会、改善客户体验和重塑行业格局。 随着云…

推荐网址

http://www.yuanma.org/data/2006/0621/article_896.htm http://zh.wikipedia.org/zh-cn/%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95#.E7.A9.A9.E5.AE.9A.E7.9A.84

网站推荐!!!

我来推荐几个网站哈&#xff0c;希望能帮到你,入坑不亏呀。 1.百度&#xff0c;这个肯定不陌生&#xff0c;哈哈哈&#xff0c;有问题&#xff0c;问度娘呀,百度一下&#xff0c;你就知道 &#xff0c;网址&#xff1a;www.baidu.com 2.素材巷&#xff0c;这个应该有少数人知…

用户资讯推荐

用户访问资讯行为得分 #获取资讯包 kyp_df spark.sql(f"select item_id from table where dt20221211 and pool_code in (news)")import pyspark.sql.function as f from pyspark.sql import types as T import datetime import numpy as np#时间处理函数 def get_…