我按照tuturial。
实施了一个简单的标签布局在教程中,选项卡位于屏幕顶部。有没有办法找到屏幕左侧的标签而不是在顶部找到标签?如何更改布局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">
<TabWidget
android:id="@android:id/tabs"
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" />
</LinearLayout>
</TabHost>
答案 0 :(得分:1)
TabActivty不支持左侧的句柄标签,但这里有一个可能的选择:
Existing patches for android tabwidget to allow tabs on left-hand side?
另一种解决方案是编写自己的标签小部件: http://groups.google.com/group/android-developers/browse_thread/thread/6587ffd8ea4ed74a#