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

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

<?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>

 

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

posted @ 2021-12-20 14:20  云豹科技-苏凌霄  阅读(47)  评论(0编辑  收藏  举报