Java教程

直播源码网站,菜单栏的横向滑动

本文主要是介绍直播源码网站,菜单栏的横向滑动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

直播源码网站,菜单栏的横向滑动实现的相关代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<!-- 内容区 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="内容区" />

</LinearLayout>

<!-- 左边菜单 android:layout_gravity="start" -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/holo_blue_bright"
android:gravity="center">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="左边菜单" />

</LinearLayout>

<!-- 右边菜单 android:layout_gravity="end" -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="end"
android:background="@android:color/holo_blue_bright"
android:gravity="center">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="右边菜单" />

</LinearLayout>

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

 

以上就是直播源码网站,菜单栏的横向滑动实现的相关代码, 更多内容欢迎关注之后的文章

这篇关于直播源码网站,菜单栏的横向滑动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!