activity_main.xml

来源:互联网 发布:linux下vim配置文件 编辑:程序博客网 时间:2024/05/19 02:39
<?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/activity_main"    android:layout_width="match_parent"    android:layout_height="match_parent">    <LinearLayout        android:id="@+id/ll"        android:layout_width="400dp"        android:layout_height="match_parent"        android:layout_gravity="left"        android:choiceMode="singleChoice"        android:orientation="vertical"        android:background="@color/colorAccent">        <ImageView            android:id="@+id/iv"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:background="@mipmap/ic_launcher" />        <TextView            android:layout_width="match_parent"            android:layout_height="match_parent"            android:text="我的消息"/>        <TextView            android:layout_width="match_parent"            android:layout_height="match_parent"            android:text="会员中心"/>        <TextView            android:layout_width="match_parent"            android:layout_height="match_parent"            android:text="商城"/>        <TextView            android:layout_width="match_parent"            android:layout_height="match_parent"            android:text="扫一扫"/>    </LinearLayout>    <com.bawei.xlist.XListView        android:id="@+id/xlv"        android:layout_width="match_parent"        android:layout_height="match_parent"/></android.support.v4.widget.DrawerLayout>