用Tab页做的底部菜单

用Tab页做的底部菜单,里面主要有两个,一个是XML配置文件,一个实现类

maintabs.xml   


<?xml version="1.0" encoding="UTF-8"?> 
<TabHost android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent" 
  xmlns:android="http://schemas.android.com/apk/res/android"> 
    <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> 
        <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="1.0" /> 
        <TabWidget android:id="@android:id/tabs" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.0"  /> 
            <RadioGroup  
                android:gravity="center_vertical" android:layout_gravity="bottom" android:orientation="horizontal" android:id="@id/main_radio"   
                android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/bottom_bg"  > 
                <RadioButton  android:id="@id/radio_button0" android:layout_marginTop="4.0dip" android:text="@string/main_home"  style="@style/main_tab_bottom"  android:layout_marginLeft="10dip"/> 
                <RadioButton  android:id="@id/radio_button1" android:layout_marginTop="4.0dip" android:text="@string/main_news"  style="@style/main_tab_bottom" /> 
                <RadioButton  android:id="@id/radio_button2" android:layout_marginTop="4.0dip" android:text="@string/main_manage_date"  style="@style/main_tab_bottom" android:layout_marginRight="10dip" /> 
            </RadioGroup> 
    </LinearLayout> 
</TabHost> 



MainTabActivity.java

public class MainTabActivity extends TabActivity implements OnCheckedChangeListener{ 
     
    private TabHost mTabHost; 
    private Intent mAIntent; 
    private Intent mBIntent; 
    private Intent mCIntent; 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        requestWindowFeature(Window.FEATURE_NO_TITLE); 
        setContentView(R.layout.maintabs); 
       
        this.mAIntent = new Intent(this,ArReceiveGiftActivity.class); //第一个页面
        this.mBIntent = new Intent(this,ArGiftShopActivity.class); //第二个页面
        this.mCIntent = new Intent(this,ArMissiveGiftActivity.class); //第三个页面

        ((RadioButton) findViewById(R.id.radio_button0)) 
        .setOnCheckedChangeListener(this); 
        ((RadioButton) findViewById(R.id.radio_button1)) 
        .setOnCheckedChangeListener(this); 
        ((RadioButton) findViewById(R.id.radio_button2)) 
        .setOnCheckedChangeListener(this); 
        
        
        setupIntent();
        ((RadioButton) findViewById(R.id.radio_button0)) .setChecked(true);
        //设置默认选中项
    } 
 
    @Override 
    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
        if(isChecked){ 
            switch (buttonView.getId()) { 
            case R.id.radio_button0: 
                this.mTabHost.setCurrentTabByTag("A_TAB"); 
                break; 
            case R.id.radio_button1: 
                this.mTabHost.setCurrentTabByTag("B_TAB"); 
                break; 
            case R.id.radio_button2: 
                this.mTabHost.setCurrentTabByTag("C_TAB"); 
                break; 
 
            } 
        } 
    } 
     
    private void setupIntent() { 
        this.mTabHost = getTabHost(); 
        TabHost localTabHost = this.mTabHost; 
        
        localTabHost.addTab(buildTabSpec("A_TAB", R.string.main_home, 
                R.drawable.icon_1_n, this.mAIntent)); 
 
        localTabHost.addTab(buildTabSpec("B_TAB", R.string.main_news, 
                R.drawable.icon_2_n, this.mBIntent)); 
 
        localTabHost.addTab(buildTabSpec("C_TAB", 
                R.string.main_manage_date, R.drawable.icon_3_n, 
                this.mCIntent)); 
        localTabHost.setCurrentTab(0);
        //设置默认选中页
  
    } 
     
    private TabHost.TabSpec buildTabSpec(String tag, int resLabel, int resIcon, 
            final Intent content) { 
        return this.mTabHost.newTabSpec(tag).setIndicator(getString(resLabel), 
                getResources().getDrawable(resIcon)).setContent(content); 
    } 
} 



样式文件    main_tab_bottom

    

 <style name="main_tab_bottom"> 
        <item name="android:textSize">@dimen/bottom_tab_font_size</item>
        <item name="android:textStyle">bold</item> 
        <item name="android:textColor">#ffffffff</item> 
        <item name="android:ellipsize">marquee</item> 
        <item name="android:gravity">center_horizontal</item> 
        <item name="android:background">@drawable/home_btn_bg</item> 
        <item name="android:paddingTop">@dimen/bottom_tab_padding_up</item> 
        <item name="android:paddingBottom">2.0dip</item> 
        <item name="android:layout_width">fill_parent</item> 
        <item name="android:layout_height">fill_parent</item>  
        <item name="android:layout_marginBottom">2.0dip</item> 
        <item name="android:button">@null</item> 
        <item name="android:singleLine">true</item> 
        <item name="android:drawablePadding">@dimen/bottom_tab_padding_drawable</item> 
        <item name="android:layout_weight">1.0</item> 
    </style> 

尺寸文件

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 
    <dimen name="bottom_tab_font_size">16.0sp</dimen> 
    <dimen name="bottom_tab_padding_up">11dip</dimen> 
    <dimen name="bottom_tab_padding_drawable">2.0dip</dimen> 
    <dimen name="switch_logo_bottom_padding">30.0sp</dimen> 
    <dimen name="widget_height">100.0dip</dimen> 
    <dimen name="sta_height">42.0dip</dimen> 
    <dimen name="large_padding_length">20.0dip</dimen> 
    <dimen name="widget_write_margin_top">19.0dip</dimen> 
    <dimen name="widget_write_margin_left">10.0dip</dimen> 
    <dimen name="widget_content_margin_top">20.0dip</dimen> 
    <dimen name="widget_content_margin_left">10.0dip</dimen> 
    <dimen name="widget_logo_size">35.0dip</dimen> 
    <dimen name="title_height">74.0dip</dimen> 
    <dimen name="new_blog_size">70.0dip</dimen> 
    <dimen name="emotion_item_view_height">13.299988dip</dimen> 
    <dimen name="splash_test_top_margin_top">20.0dip</dimen> 
    <dimen name="splash_test_center_margin_right">0.0dip</dimen> 
    <dimen name="title_text_size">20.0sp</dimen> 
    <dimen name="normal_padding_length">10.0dip</dimen> 
    <dimen name="no_result_padding_length">50.0dip</dimen> 
 
</resources> 






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值