Newer
Older
GasOperationApp / app / src / main / res / layout / buttombar.xml
[wangxitong] on 24 May 2021 3 KB first commit
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<!--    //项目中切换Fragment,用FrameLayout占位-->
    <FrameLayout
        android:id="@+id/main_fragment_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#cccccc" />
<!--    //底部导航-->
    <LinearLayout
        android:id="@+id/main_center_switcher_container"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal">
<!--        //每个导航按钮用一个FrameLayout占位-->
        <FrameLayout
            android:id="@+id/current_job"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/pic1"
                android:layout_width="28dp"
                android:layout_height="28dp"
                android:src="@drawable/cur"
                android:layout_marginTop="3dp"
                android:layout_gravity="center_horizontal" />
            <TextView
                android:id="@+id/label1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="bottom|center_horizontal"
                android:textSize="13dp"
                android:text="当前作业"
                android:textColor="@color/gray" />

        </FrameLayout>

        <FrameLayout
            android:id="@+id/history_job"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1">
            <ImageView
                android:layout_width="28dp"
                android:layout_height="28dp"
                android:src="@drawable/his"
                android:layout_marginTop="3dp"
                android:layout_gravity="center_horizontal"
                android:id="@+id/pic2" />
            <TextView
                android:id="@+id/label2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="bottom|center_horizontal"
                android:textSize="13dp"
                android:text="历史作业"
                android:textColor="@color/gray"
                />
        </FrameLayout>
        <FrameLayout
            android:id="@+id/me"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/pic3"
                android:layout_width="28dp"
                android:layout_height="28dp"
                android:src="@drawable/me"
                android:layout_marginTop="3dp"
                android:layout_gravity="center_horizontal" />
            <TextView
                android:id="@+id/label3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="bottom|center_horizontal"
                android:textSize="13dp"
                android:text="我的"
                android:textColor="@color/gray" />
        </FrameLayout>

    </LinearLayout>
</LinearLayout>