-6
可能重複:
Android: Tabs at the BOTTOM是否可以在android中將TabActivity選項卡圖標放在屏幕底部?
可以在android系統擺在TabActivity標籤的圖標在屏幕的底部?默認情況下,選項卡圖標位於頂部。如何改變這一點?
可能重複:
Android: Tabs at the BOTTOM是否可以在android中將TabActivity選項卡圖標放在屏幕底部?
可以在android系統擺在TabActivity標籤的圖標在屏幕的底部?默認情況下,選項卡圖標位於頂部。如何改變這一點?
創建XML標籤爲'
<?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:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:layout_weight="1"/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
</LinearLayout>
</TabHost>
`
我試過了,它不起作用! – Damir
在這裏找到答案:http://stackoverflow.com/a/2710404/181002 有一個愉快的一天。 –
檢查:http://envyandroid.com/archives/326/align-tabhost-at-bottom – Ian