我想在TabWidget的右端添加一个Button。 TabWidget位于HorizontalScrollView内(在代码中添加) 但按钮不能与标签一起滚动, 但要始终保持标签栏的正确性。
我不确定我是否可以通过这种方式自定义TabWidget,所以另一个想法就是 只需除 TabWidget之外放置这样一个按钮。
我尝试使用以下布局,但TextView没有出现。 所以我的问题是,它通常是可行的,还是我需要一种不同的方法?
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_tabhost"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/tab_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SEARCH HERE"/>
</LinearLayout>
<FrameLayout
android:id="@+id/content_body"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>