欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

分享一个C布局(代码)

程序员文章站 2022-06-24 19:55:05
分享一个c布局(代码)

分享一个c布局(代码)

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.drawerlayout xmlns:android="https://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/drawer_layout"
    >
    <linearlayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        >
        <framelayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="9"
            android:id="@+id/show_frame"
            />
        <radiogroup
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal"
            android:id="@+id/show_rg"
            >
            <radiobutton
                android:text="棣栭〉"
                android:id="@+id/btn1"
                style="@style/mystyle"
                />
            <radiobutton
                android:text="鍒嗙被"
                android:id="@+id/btn2"
                style="@style/mystyle"
                />
            <radiobutton
                android:text="鎴戠殑"
                android:id="@+id/btn3"
                style="@style/mystyle"
                />
        </radiogroup>
 
    </linearlayout>
 
    <!--渚ф爮-->
    <linearlayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="#fff"
        android:orientation="vertical"
        >
        <imageview
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:src="@drawable/header"
            android:id="@+id/nav_header"
            />
        <textview
            android:layout_margintop="21dp"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:id="@+id/nav_goods"
            android:text="鍟嗗搧"
            android:layout_marginleft="21dp"
            />
 
        <textview
            android:id="@+id/nav_tuijian"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_marginleft="21dp"
            android:text="鐬庢帹鑽? />
    </linearlayout>
</android.support.v4.widget.drawerlayout>