Android Tabhost使用方法详解
时间:2021-01-31 08:12:18|栏目:Android代码|点击: 次
Android 实现tab视图有2种方法,一种是在布局页面中定义<tabhost>标签,另一种就是继承tabactivity.但是我比较喜欢第二种方式,应为如果页面比较复杂的话你的XML文件会写得比较庞大,用第二种方式XML页面相对要简洁得多。
下面是我的XML源码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ListView android:id="@+id/journals_list_one" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="#FFFFFFFF" android:scrollbars="vertical" android:paddingTop="5dip" android:paddingBottom="5dip" android:paddingRight="5dip" android:background="#FFFFFFFF" android:listSelector="@drawable/list_item_selecter" /> <ListView android:id="@+id/journals_list_two" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="#FFFFFFFF" android:scrollbars="vertical" android:paddingTop="5dip" android:paddingBottom="5dip" android:paddingRight="5dip" android:background="#FFFFFFFF" /> <ListView android:id="@+id/journals_list_three" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="#FFFFFFFF" android:scrollbars="vertical" android:paddingTop="5dip" android:paddingBottom="5dip" android:paddingRight="5dip" android:background="#FFFFFFFF" /> <ListView android:id="@+id/journals_list_end" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="#FFFFFFFF" android:scrollbars="vertical" android:paddingTop="5dip" android:paddingBottom="5dip" android:paddingRight="5dip" android:background="#FFFFFFFF" /> </FrameLayout>
这是JAVA源码:
private TabHost tabHost; private ListView listView; private MyListAdapter adapter; private View footerView; private List<Map<String, String>> data = new ArrayList<Map<String, String>>(); /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); tabHost = this.getTabHost(); LayoutInflater.from(this).inflate(R.layout.main, tabHost.getTabContentView(), true); tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("", getResources().getDrawable(R.drawable.home)).setContent( R.id.journals_list_one)); tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("", getResources().getDrawable(R.drawable.activity)).setContent( R.id.journals_list_two)); tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("", getResources().getDrawable(R.drawable.community)).setContent( R.id.journals_list_three)); tabHost.addTab(tabHost.newTabSpec("tab4").setIndicator("", getResources().getDrawable(R.drawable.shop)).setContent( R.id.journals_list_end)); tabHost.setCurrentTab(0); setContentView(tabHost); tabHost.setOnTabChangedListener(tabChangeListener); showContent(); }
让自己的类继承TabActivity,然后通过调用getTabHost()方法得到tabhost对象,然后把自己写好的数据展示的布局文件加载到tabhost中,就可以实现了。最后是通过调用addTab()方法添加标签的相关属性(如:标签名称,标签图片,标签内容布局)。
上一篇:详解Android10的分区存储机制(Scoped Storage)适配教程
栏 目:Android代码
本文地址:http://www.codeinn.net/misctech/54724.html