`
小杨学JAVA
  • 浏览: 900657 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Android底部菜单栏设计TabWidget

 
阅读更多

 

Android底部菜单栏设计 完整代码

实现方式一:通过TabWidget实现

这种方式主要是在布局中将TabWidget标签嵌套在RelativeLayout中,并且在TabWidget标签中中设置 android:layout_alignParentBottom="true"

另外,下划线和选项卡之间的线去除的方法时在TabWidget标签中设置属性android:tabStripEnabled="false"

main.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
     <FrameLayout 
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:padding="5dp"
            ></FrameLayout>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <!-- tabStripEnabled属性去掉底部下划线与选项卡间的下划线 -->
        <!-- layout_alignParentBottom属性即可将其放在底部菜单栏,注意,必须在RelativeLayout里 -->
        <TabWidget 
            android:id="@android:id/tabs"
            android:tabStripEnabled="false"
            android:background="#6E6E6E"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            ></TabWidget>
       
    </RelativeLayout>

</TabHost>

主要代码

package com.loulijun.demo1;

import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TabHost;

public class Demo1Activity extends TabActivity {
    /** Called when the activity is first created. */
    private TabHost tabhost;
    private Intent intent1, intent2, intent3, intent4;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        tabhost = getTabHost();
        
        intent1 = new Intent(Demo1Activity.this, One.class);
        tabhost.addTab(tabhost.newTabSpec("one")
                .setIndicator("电话",getResources().getDrawable(android.R.drawable.ic_menu_call))
                .setContent(intent1));
        
        intent2 = new Intent(Demo1Activity.this, Two.class);
        tabhost.addTab(tabhost.newTabSpec("two")
                .setIndicator("相机",getResources().getDrawable(android.R.drawable.ic_menu_camera))
                .setContent(intent2));
        
        intent3 = new Intent(Demo1Activity.this, Three.class);
        tabhost.addTab(tabhost.newTabSpec("three")
                .setIndicator("分享",getResources().getDrawable(android.R.drawable.ic_menu_share))
                .setContent(intent3));
        
        intent4 = new Intent(Demo1Activity.this, Four.class);
        tabhost.addTab(tabhost.newTabSpec("four")
                .setIndicator("更多",getResources().getDrawable(android.R.drawable.ic_menu_more))
                .setContent(intent4));
    }
}

 

运行效果如下:

实现方式二:隐藏TabWidget,通过RadioGroup和RadioButton实现底部菜单栏

这种方式更漂亮,网上基本用的是这种方式,通过setCurrentTabByTag来切换不同的选项卡

main.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <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:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.0"
            android:visibility="gone"/>
        <RadioGroup
            android:id="@+id/main_tab"
            android:background="@drawable/maintab_toolbar_bg"
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical"
            android:layout_gravity="bottom">
            <RadioButton 
                android:layout_marginTop="2.0dip"
                android:text="@string/main_home"
                android:drawableTop="@drawable/icon_1_n"
                android:id="@+id/radio_button0"
                style="@style/main_tab_bottom"/>
            <RadioButton 
                android:layout_marginTop="2.0dip"
                android:text="@string/main_news"
                android:drawableTop="@drawable/icon_2_n"
                android:id="@+id/radio_button1"
                style="@style/main_tab_bottom"/>
            <RadioButton 
                android:layout_marginTop="2.0dip"
                android:text="@string/main_my_info"
                android:drawableTop="@drawable/icon_3_n"
                android:id="@+id/radio_button2"
                style="@style/main_tab_bottom"/>
            <RadioButton 
                android:layout_marginTop="2.0dip"
                android:text="@string/menu_search"
                android:drawableTop="@drawable/icon_4_n"
                android:id="@+id/radio_button3"
                style="@style/main_tab_bottom"/>
            <RadioButton 
                android:layout_marginTop="2.0dip"
                android:text="@string/more"
                android:drawableTop="@drawable/icon_5_n"
                android:id="@+id/radio_button4"
                style="@style/main_tab_bottom"/>
        </RadioGroup>
    </LinearLayout>
</TabHost>

drawable/home_btn_bg.xml:切换时的效果

<?xml version="1.0" encoding="UTF-8"?>
<selector
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:state_enabled="true" android:state_pressed="false" android:drawable="@drawable/home_btn_bg_s" />
    <item android:state_enabled="true" android:state_pressed="true" android:drawable="@drawable/home_btn_bg_s" />
    <item android:state_enabled="true" android:state_checked="true" android:drawable="@drawable/home_btn_bg_d" />
    <item android:drawable="@drawable/transparent" />
</selector>

string/dimens.xml 尺寸文件

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="bottom_tab_padding_drawable">2.0dip</dimen>
    <dimen name="bottom_tab_padding_up">5.0dip</dimen>
    <dimen name="bottom_tab_font_size">10.0dip</dimen>
</resources>

string/drawables.xml 设置为透明

<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="drawable" name="transparent">#00000000</item>
</resources>

string/styles.xml 样式文件

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="main_tab_bottom">
    <item name="android:textSize">@dimen/bottom_tab_font_size</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:layout_width">fill_parent</item>
    <item name="android:layout_height">wrap_content</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>
</resources>

主要的代码

package com.loulijun.demo2;

import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Window;
import android.widget.RadioGroup;
import android.widget.TabHost;
import android.widget.RadioGroup.OnCheckedChangeListener;
public class MainTabActivity extends TabActivity implements OnCheckedChangeListener{
    private RadioGroup mainTab;
    private TabHost tabhost;
    private Intent iHome;
    private Intent iNews;
    private Intent iInfo;
    private Intent iSearch;
    private Intent iMore;
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
        mainTab=(RadioGroup)findViewById(R.id.main_tab);
        mainTab.setOnCheckedChangeListener(this);
        tabhost = getTabHost();
        
        iHome = new Intent(this, HomeActivity.class);
        tabhost.addTab(tabhost.newTabSpec("iHome")
                .setIndicator(getResources().getString(R.string.main_home), getResources().getDrawable(R.drawable.icon_1_n))
                .setContent(iHome));
        
        iNews = new Intent(this, NewsActivity.class);
        tabhost.addTab(tabhost.newTabSpec("iNews")
                .setIndicator(getResources().getString(R.string.main_news), getResources().getDrawable(R.drawable.icon_2_n))
                .setContent(iNews));
        
        iInfo = new Intent(this, MyInfoActivity.class);
        tabhost.addTab(tabhost.newTabSpec("iInfo")
                .setIndicator(getResources().getString(R.string.main_my_info), getResources().getDrawable(R.drawable.icon_3_n))
                .setContent(iInfo));
        
        iSearch = new Intent(this,SearchActivity.class);
        tabhost.addTab(tabhost.newTabSpec("iSearch")
                .setIndicator(getResources().getString(R.string.menu_search), getResources().getDrawable(R.drawable.icon_4_n))
                .setContent(iSearch));
        
        iMore = new Intent(this, MoreActivity.class);
         tabhost.addTab(tabhost.newTabSpec("iMore")
                    .setIndicator(getResources().getString(R.string.more), getResources().getDrawable(R.drawable.icon_5_n))
                    .setContent(iMore));
    }
   

    @Override
    public void onCheckedChanged(RadioGroup group, int checkedId) {
        switch(checkedId){
        case R.id.radio_button0:
            this.tabhost.setCurrentTabByTag("iHome");
            break;
        case R.id.radio_button1:
            this.tabhost.setCurrentTabByTag("iNews");
            break;
        case R.id.radio_button2:
            this.tabhost.setCurrentTabByTag("iInfo");
            break;
        case R.id.radio_button3:
            this.tabhost.setCurrentTabByTag("iSearch");
            break;
        case R.id.radio_button4:
            this.tabhost.setCurrentTabByTag("iMore");
            break;
        }
    }
    
    
}
转载自:http://www.uugo.org/tool/Android/71404.html

 

分享到:
评论

相关推荐

    Android底部菜单栏

    这个“Android底部菜单栏”教程是为初学者设计的,旨在帮助他们理解如何在Android应用中实现这一功能。我们将主要探讨TabHost组件,它是Android早期版本中用来实现标签页式导航的一种方式。 首先,我们需要了解底部...

    Android底部菜单栏的两种实现方式demo 附完整源码.rar

    本教程将详细讲解两种实现Android底部菜单栏的方法,并提供完整的源码供参考。 一、通过TabWidget实现底部菜单栏 TabWidget是Android SDK中的一个控件,它允许在界面上创建一个可滚动的标签页。以下是如何使用...

    Android底部菜单栏 仿微博效果

    下面我们将详细介绍如何使用TabHost来实现Android底部菜单栏的仿微博效果。 首先,我们需要在XML布局文件中设置TabHost。在提供的部分代码中,我们可以看到以下布局结构: ```xml &lt;TabHost xmlns:android=...

    android 底部菜单栏 TabHost

    在Android应用开发中,底部菜单栏(Bottom Navigation Bar)是一种常见的用户界面元素,它提供了一种方便用户在多个主要功能之间切换的方式。本资源聚焦于使用`TabHost`组件来实现这种底部菜单栏功能。`TabHost`是...

    Android底部导航菜单栏TabHost

    在Android应用开发中,底部导航菜单栏(Bottom Navigation Bar)是一种常见的用户界面设计,它允许用户在多个顶级操作之间快速切换。TabHost是Android SDK提供的一种实现底部导航栏的组件,它可以帮助开发者创建多...

    Android应用底部导航栏(选项卡)实例Demo

    然而,随着Android设计指南的更新,现在更推荐使用`BottomNavigationView`或自定义布局来实现底部导航栏,因为`TabWidget`已经显得过时且不符合现代 Material Design 规范。 在"Android应用底部导航栏(选项卡)实例...

    android 实现底部菜单

    在Android应用开发中,创建一个底部菜单是相当常见的需求,它可以帮助用户轻松地在不同的功能模块之间切换。本文将详细讲解如何使用TabHost和RadioButton来实现这样一个底部菜单UI界面。 首先,我们需要理解TabHost...

    使用TabHost实现底部菜单栏

    下面将详细介绍如何使用`TabHost`来实现底部菜单栏。 ### 1. `TabHost`概述 `TabHost`是Android中的一个容器,它可以容纳多个`TabWidget`(选项卡)和一个`FrameLayout`(内容区域)。`TabWidget`显示选项卡,`...

    TabHost+TabWidget+FrameLayout实现底部菜单

    总结一下,`TabHost+TabWidget+FrameLayout`是Android早期实现底部菜单的一种方式。虽然现代开发中可能倾向于使用更先进的组件,但理解这一基础知识有助于我们更好地掌握Android应用的构建。在实际项目中,开发者...

    android 底部菜单嵌套viewpager+menudrawer

    底部菜单是一种用户界面元素,通常包含3到5个图标,每个图标对应一个主要功能。在Android中,我们可以使用`BottomNavigationView`组件来实现。设置菜单项需要在XML布局文件中定义,并在Java或Kotlin代码中关联相应...

    android底部菜单栏实现原理与代码

    以上就是使用TabHost实现Android底部菜单栏的基本步骤。这种实现方式虽然简单,但能够满足基本需求,同时提供了显示未读消息数的功能。然而,随着Android版本的更新,谷歌推荐使用`BottomNavigationView`或者`...

    底部菜单栏

    在Android应用开发中,底部菜单栏(Bottom Navigation Bar)是一种常见的设计模式,它允许用户在应用的几个主要功能之间快速切换。本教程将详细介绍如何利用`TabActivity`和`ViewGroup`来实现一个简单的底部菜单栏,...

    Android底部菜单

    在这个"Android底部菜单"的示例中,我们将深入探讨如何使用TabHost来创建具有动态背景切换功能的底部菜单。 1. **TabHost的基本用法** - TabHost是一个容器,它可以包含一个TabWidget(显示标签)和一个...

    android TabHost底部菜单(类似iphone)

    在Android开发中,TabHost是一种常用的组件,...通过合理的布局设计和代码编写,我们可以实现与iPhone底部菜单类似的用户体验。在实际开发中,根据需求,还可以结合Fragment进行更复杂的页面管理,以实现更灵活的功能。

    android Tabhost 实现底部菜单效果

    通过以上步骤,你就可以创建一个具备图片和文字,并且有选中效果的Android TabHost底部菜单了。不过需要注意的是,随着Android版本的发展,现在更推荐使用`BottomNavigationView`或`ViewPager`配合`TabLayout`来实现...

    Android仿微信底部菜单栏功能显示未读消息数量

    在Android应用开发中,设计一个类似微信的底部菜单栏是一个常见的需求,它不仅可以提供主要功能的切换,还能显示未读消息的数量,提升用户体验。本文将详细介绍如何实现这一功能。 首先,我们来理解底部菜单栏的...

    android底部布局1

    2. **在布局XML文件中添加BottomNavigationView**:使用`&lt;com.google.android.material.bottomnavigation.BottomNavigationView&gt;`标签创建底部菜单,并设置其菜单资源。 3. **关联Fragment**:在活动中,使用`...

    安智市场UI底部菜单1

    "安智市场UI底部菜单1"这个项目,从标题和描述来看,主要关注的是使用`Fragment`和`TabHost`来构建一个应用程序的底部导航菜单。这种设计模式允许用户在多个视图间轻松切换,同时保持界面的一致性和易用性。下面我们...

Global site tag (gtag.js) - Google Analytics