根据我的应用程序要求,我创建了一个扩展TabActivity的活动,为这些选项卡添加了Tabs和不同的活动作为内容。到目前为止一切都还可以,但是我想在整个TabActivity中添加搜索功能,这意味着搜索工作在TabHost的顶部完成,它应该反映所有选项卡内容的搜索。
我知道如何将搜索添加到单个活动中,但我没有找到任何解决方案来解决我的问题。
如果你知道任何程序,请建议我。
答案 0 :(得分:0)
根据文档,不推荐使用TabActivity:
http://developer.android.com/reference/android/app/TabActivity.html
你应该使用FragmentTabHost或超级棒的SherlockActionBar库。
在实现其中一种现代方法之后,只需在菜单中添加一个searchView菜单项即可。
答案 1 :(得分:0)
您可以尝试在活动jus中托管搜索栏,然后再添加tabhost,如下面的代码所示。此外,还可以通过添加文本观察器来实现搜索功能
public class MyTabActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tab_xml_with_search_bar);
}
}
<强> tab_xml_with_search_bar.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Search text"
/>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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"/>
</LinearLayout>
</TabHost>