Newer
Older
dxcgt_app / app / src / main / res / layout / main_view_third.xml
wangxitong on 12 Jan 2021 4 KB first commit
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:cgt="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#f0f0f0"
    android:paddingBottom="20dp"
    android:paddingTop="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="2"
        android:orientation="horizontal"
        android:gravity="center_horizontal"
        >

        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_ProblemUrgent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_urgent"
            cgt:Text="紧急要件">
        </com.smartdot.cgt.view.ImageTextButton>

        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_OverTime"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_overtime"
            cgt:Text="超时督办">
        </com.smartdot.cgt.view.ImageTextButton>


        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_ProblemInput"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_probleminput"
            cgt:Text="案卷上报">
        </com.smartdot.cgt.view.ImageTextButton>


    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="2"
        android:orientation="horizontal"
        android:gravity="center_horizontal">


        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_Analysis"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_analysis"
            cgt:Text="统计分析" >
        </com.smartdot.cgt.view.ImageTextButton>

        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_PersonOnline"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_online"
            cgt:Text="在岗人员" >
        </com.smartdot.cgt.view.ImageTextButton>

        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_ProblemHistory"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_history"
            cgt:Text="案卷查询" >
        </com.smartdot.cgt.view.ImageTextButton>

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="2"
        android:orientation="horizontal"
        android:gravity="center_horizontal">
        <com.smartdot.cgt.view.ImageTextButton
            android:id="@+id/btn_Setting"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1"
            android:background="@drawable/imagebtn_press"
            cgt:ImageSrc="@drawable/main_setting"
            cgt:Text="系统设置" >
        </com.smartdot.cgt.view.ImageTextButton>
        <TextView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1">
        </TextView>
        <!--<include layout="@layout/include_weight"/>-->
        <TextView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="3dip"
            android:layout_weight="1">
        </TextView>
        <!--<include layout="@layout/include_weight"/>-->
    </LinearLayout>

</LinearLayout>