Android-侧滑菜单(三)

2024-08-31 09:48
文章标签 android 菜单 侧滑

本文主要是介绍Android-侧滑菜单(三),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

新整理的仿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-屏幕左右侧滑(二)

这篇关于Android-侧滑菜单(三)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1123565

相关文章

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

android应用中res目录说明

Android应用的res目录是一个特殊的项目,该项目里存放了Android应用所用的全部资源,包括图片、字符串、颜色、尺寸、样式等,类似于web开发中的public目录,js、css、image、style。。。。 Android按照约定,将不同的资源放在不同的文件夹中,这样可以方便的让AAPT(即Android Asset Packaging Tool , 在SDK的build-tools目

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

Windows如何添加右键新建菜单

Windows如何添加右键新建菜单 文章目录 Windows如何添加右键新建菜单实验环境缘起以新建`.md`文件为例第一步第二步第三步 总结 实验环境 Windows7 缘起 因为我习惯用 Markdown 格式写文本,每次新建一个.txt后都要手动修改为.md,真的麻烦。如何在右键新建菜单中添加.md选项呢? 网上有很多方法,这些方法我都尝试了,要么太麻烦,要么不凑效

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR