このレイアウトをAndroidデバイスで開発する必要があります。デザインでタブビューと3つのタブを使用しています。TabWidget は画面の下部に配置する必要があります。また、この種の tabwidget のレイアウトを開発する方法も必要です。
質問する
144 次
1 に答える
0
この方法を試してTabWidget
、画面の下部にあるを取得してください。
<?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"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" /> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center|center" android:tabStripEnabled="false"/> </LinearLayout>
于 2013-01-09T10:03:02.133 に答える