0

我想自定义如下布局:触摸每个选项卡(新闻/视频)将显示每个页面的内容。

我不确定是否应该使用什么小部件:2 Buttons 或 TabHost?

感谢您的帮助。

布局

4

2 回答 2

1

我做了一个,只是为了不每次都处理这些东西......如果你愿意,你可以使用它。

于 2013-06-15T01:32:25.153 回答
0

简单的方法:setContentView 但感觉不好另一种方法:带有 2 个 RadioButtons 的自定义 tabhost

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
         android:id="@android:id/tabhost"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">  
    <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"> 
        <ImageView
                android:background="@drawable/home01_23"
                android:layout_alignParentLeft="true"
                android:layout_width="wrap_content"
                android:layout_height="50dp"></ImageView>
        <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="0.0"
                android:visibility="gone"/>
        <RadioGroup
                android:id="@+id/main_radio"
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:layout_alignParentRight="true"
                android:gravity="center_vertical"
                android:orientation="horizontal">  
            <RadioButton
                    android:id="@+id/radio_1"
                    android:layout_height="fill_parent"
                    android:layout_width="wrap_content"
                    android:layout_gravity="bottom"
                    android:checked="true"
                    android:layout_marginRight="5dp"
                    android:text=""/>  
            <RadioButton
                    android:id="@+id/radio_2"
                    android:layout_height="fill_parent"
                    android:layout_width="wrap_content"
                    android:layout_gravity="bottom"
                    android:checked="false"
                    android:layout_marginRight="5dp"
                    android:text=""/>  
        </RadioGroup>
        <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_below="@+id/main_radio"
                android:layout_height="fill_parent"> 
        </FrameLayout>
    </RelativeLayout>
</TabHost>
于 2013-06-14T09:38:51.110 回答