android tabwidget需要帮助

时间:2011-06-07 11:52:08

标签: iphone android tabwidget

我需要在我的应用程序中创建选项卡我已经使用了以下工作良好...但我需要它显示为选项卡看看iPhone如何使用Android 1.6?提前谢谢..

<?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_height="fill_parent"
    android:layout_width="fill_parent">
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_alignParentBottom="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp" />
</RelativeLayout>

我试过这个,但我的应用程序崩溃了

<?xml version="1.0" encoding="utf-8"?>
<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabhost"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TabWidget
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs"
android:layout_alignParentBottom="true"
/>
 <FrameLayout
 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabcontent"
 >
 </FrameLayout>
</RelativeLayout>
</TabHost>

1 个答案:

答案 0 :(得分:1)

我有自定义的android标签看起来像iPhone UITabBar,在这里找到:

或者你可以使用RadioGroup实现自己的标签,但需要很多工作, 要实施RadioGroup,您可以参考this project。它使用像SegmentedControl这样的Iphone,你可以自己使用它看起来像iphone标签。