基本信息
源码名称:android 底部tab切换 例子代码
源码大小:1.18M
文件格式:.rar
开发语言:Java
更新时间:2015-05-27
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
package com.task.apptaobao; import android.os.Bundle; import android.app.TabActivity; import android.content.Intent; import android.view.Menu; import android.widget.TabHost; import android.widget.TabHost.TabSpec; public class MainActivity extends TabActivity { private TabHost _tabHost; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); _tabHost = getTabHost(); AddTabPage1(); AddTabPage2(); AddTabPage3(); AddTabPage4(); AddTabPage5(); } private void AddTabPage5() { Intent internt5 = new Intent(); internt5.setClass(this, ACT5.class); TabSpec tabSpec = _tabHost.newTabSpec("act5"); // TODO Auto-generated method stub tabSpec.setIndicator("更多"); // 指定跳转方向 tabSpec.setContent(internt5); _tabHost.addTab(tabSpec); } private void AddTabPage4() { // TODO Auto-generated method stub Intent internt4 = new Intent(); internt4.setClass(this, ACT4.class); TabSpec tabSpec = _tabHost.newTabSpec("act4"); tabSpec.setIndicator("分享"); // 指定跳转方向 tabSpec.setContent(internt4); _tabHost.addTab(tabSpec); } private void AddTabPage3() { // TODO Auto-generated method stub Intent internt3 = new Intent(); internt3.setClass(this, ACT3.class); TabSpec tabSpec = _tabHost.newTabSpec("act3"); tabSpec.setIndicator("购物车"); // 指定跳转方向 tabSpec.setContent(internt3); _tabHost.addTab(tabSpec); } private void AddTabPage2() { // TODO Auto-generated method stub Intent internt2 = new Intent(); internt2.setClass(this, ACT2.class); TabSpec tabSpec = _tabHost.newTabSpec("act2"); tabSpec.setIndicator("我的"); // 指定跳转方向 tabSpec.setContent(internt2); _tabHost.addTab(tabSpec); } private void AddTabPage1() { // TODO Auto-generated method stub Intent internt1 = new Intent(); internt1.setClass(this, HomeActivity.class); TabSpec tabSpec = _tabHost.newTabSpec("home"); // 指定选项卡的显示名称 tabSpec.setIndicator("首页"); // 指定跳转方向 tabSpec.setContent(internt1); _tabHost.addTab(tabSpec); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }