android实现tab功能

java程序段:

setContentView(R.layout.index);
        
        TabHost tabHost = (TabHost) findViewById(R.id.tabhost);
        // 如果没有继承TabActivity时,通过该种方法加载启动tabHost
        tabHost.setup();
        
        /*tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("",  
                getResources().getDrawable(R.drawable.icon5)).setContent(R.id.hq)); 
        
        tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("",
                getResources().getDrawable(R.drawable.icon1)).setContent(  
                        R.id.zx));  
        tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("",
                getResources().getDrawable(R.drawable.icon7)).setContent(  
                        R.id.jy)); 
        tabHost.addTab(tabHost.newTabSpec("tab4").setIndicator("",
                getResources().getDrawable(R.drawable.item_web)).setContent(  
                        R.id.ts)); 
        tabHost.addTab(tabHost.newTabSpec("tab5").setIndicator("",
                getResources().getDrawable(R.drawable.item_system)).setContent(  
                        R.id.xt));
         */
        /*tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("", getResources().getDrawable(R.drawable.icon5)).setContent(new Intent(this,HqActivity.class)));
        tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("", getResources().getDrawable(R.drawable.icon1)).setContent(new Intent(this,ZxActivity.class)));
        tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("", getResources().getDrawable(R.drawable.icon7)).setContent(new Intent(this,JyActivity.class)));
        tabHost.addTab(tabHost.newTabSpec("tab4").setIndicator("", getResources().getDrawable(R.drawable.item_web)).setContent(new Intent(this,TsActivity.class)));
        tabHost.addTab(tabHost.newTabSpec("tab5").setIndicator("", getResources().getDrawable(R.drawable.item_system)).setContent(new Intent(this,XtActivity.class)));*/
        
        
        TabWidget tabWidget = (TabWidget) tabHost.getTabWidget();
        tabWidget.setBackgroundResource(R.drawable.redbutton);
        for(int i=0;i < tabWidget.getChildCount();i++) 
        { 
         /*   可以用来设置其文本的字体,该例中图片已经包含文本 */
         TextView textView = (TextView)tabWidget.getChildAt(i).findViewById(android.R.id.title); 
         textView.setTextSize(14); 
         textView.setPadding(0, 3, 0, 0); 
                
         // 用来设置图片的高度和宽度
         ImageView image = (ImageView)tabWidget.getChildAt(i).findViewById(android.R.id.icon); 
         image.getLayoutParams().height = 50;  //通过给它的属性赋值的方法可以解决问题 
         image.getLayoutParams().width = 50;       
        } 


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值