基本的布局文件

来源:互联网 发布:wav音频分割软件 编辑:程序博客网 时间:2024/06/05 07:45

侧滑与主界面的布局:

<?xml version="1.0" encoding="utf-8"?><android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:id="@+id/drawer_layout"    android:layout_width="match_parent"    android:layout_height="match_parent">    <!--主内容区域-->    <FrameLayout        android:id="@+id/frame_layout"        android:layout_width="match_parent"        android:layout_height="match_parent">    </FrameLayout>    <RelativeLayout        android:layout_width="match_parent"        android:layout_height="match_parent">        <RadioGroup            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:orientation="horizontal"            android:id="@+id/radiogroup"            android:layout_alignParentBottom="true">            <RadioButton                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:id="@+id/radio_01"                android:layout_weight="1"                android:text="首页"                android:checked="true"                android:padding="20dp"                android:button="@null"                android:background="@drawable/select"/>            <RadioButton                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:id="@+id/radio_02"                android:layout_weight="1"                android:text="视频"                android:padding="20dp"                android:button="@null"                android:background="@drawable/select"/>            <RadioButton                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:id="@+id/radio_03"                android:layout_weight="1"                android:text="播放器"                android:padding="20dp"                android:button="@null"                android:background="@drawable/select"/>            <RadioButton                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:id="@+id/radio_04"                android:layout_weight="1"                android:text="我的"                android:padding="20dp"                android:button="@null"                android:background="@drawable/select"/>        </RadioGroup>    </RelativeLayout>    <!--侧滑的区域        侧滑菜单的默认背景颜色是半透明    -->    <RelativeLayout        android:background="#ffffff"        android:id="@+id/drawer_relative"        android:layout_gravity="left"        android:layout_width="200dp"        android:layout_height="match_parent">        <ImageView            android:id="@+id/image_touxiang"            android:layout_centerHorizontal="true"            android:layout_margin="10dp"            android:src="@mipmap/ic_launcher"            android:layout_width="80dp"            android:layout_height="80dp" />        <ListView            android:id="@+id/list_view"            android:layout_below="@+id/image_touxiang"            android:layout_width="match_parent"            android:layout_height="match_parent">        </ListView>    </RelativeLayout></android.support.v4.widget.DrawerLayout>

原创粉丝点击