android笔记---主界面(一)

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:bar="http://schemas.android.com/apk/res/com.talented"
    android:id="@+id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#efefef"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <com.talented.actionbar.ActionBar
            android:id="@id/gd_action_bar"
            android:layout_width="fill_parent"
            android:layout_height="@dimen/gd_action_bar_height"
            android:background="?attr/gdActionBarBackground"
            bar:title="@string/app_name"
            bar:type="normal" />
<!--RadioGroup中同一时刻只有一个RadioButton被选中-->
        <RadioGroup
            android:id="@+id/numbers_radio"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:background="@drawable/tab_bg"
            android:orientation="horizontal" >

            <RadioButton
                android:id="@+id/action_radio_1"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/blk_find_tab"
                android:button="@null"
                android:checked="true"
                android:drawableTop="@drawable/talented_tab_search"
                android:drawingCacheQuality="high"
                android:gravity="center"
                android:paddingBottom="3dp"
                android:paddingTop="3dp"
                android:text="@string/app_tab_name_1"
                android:textColor="@color/search_colorbg"
                android:textSize="12.0sp"
                android:textStyle="normal" />

            <RadioButton
                android:id="@+id/action_radio_2"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/blk_find_tab"
                android:button="@null"
                android:checked="false"
                android:drawableTop="@drawable/talented_tab_person"
                android:drawingCacheQuality="high"
                android:gravity="center"
                android:paddingBottom="3dp"
                android:paddingTop="3dp"
                android:text="@string/app_tab_name_2"
                android:textColor="@color/search_colorbg"
                android:textSize="12.0sp"
                android:textStyle="normal" />
            
            

            <RadioButton
                android:id="@+id/action_radio_3"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/blk_find_tab"
                android:button="@null"
                android:checked="false"
                android:drawableTop="@drawable/talented_tab_storage"
                android:drawingCacheQuality="high"
                android:gravity="center"
                android:paddingBottom="3dp"
                android:paddingTop="3dp"
                android:text="@string/app_tab_name_3"
                android:textColor="@color/search_colorbg"
                android:textSize="12.0sp"
                android:textStyle="normal" />

            <RadioButton
                android:id="@+id/action_radio_4"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/blk_find_tab"
                android:button="@null"
                android:checked="false"
                android:drawableTop="@drawable/talented_tab_access"
                android:drawingCacheQuality="high"
                android:gravity="center"
                android:paddingBottom="3dp"
                android:paddingTop="3dp"
                android:text="@string/app_tab_name_4"
                android:textColor="@color/search_colorbg"
                android:textSize="12.0sp"
                android:textStyle="normal" />
        </RadioGroup>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@+id/numbers_radio"
            android:layout_below="@id/gd_action_bar"
            android:orientation="vertical" >

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight="1" >
            </FrameLayout>

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:visibility="gone" >
            </TabWidget>
        </LinearLayout>

        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_above="@+id/numbers_radio"
            android:background="@drawable/search_shadow_up" />

        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/gd_action_bar"
            android:background="@drawable/title_bar_shadow" />
    </RelativeLayout>

</TabHost>
原文地址:https://www.cnblogs.com/newlist/p/3312420.html