`

Android--底部菜单栏实现

 
阅读更多
底部菜单栏实现

效果图:
[img]

[/img]

工程结构图:
[img]

[/img]

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;
		}
	}
    
    
}
  • 大小: 18.4 KB
  • 大小: 41.2 KB
分享到:
评论

相关推荐

    android 自定义仿微信底部菜单栏

    本教程将详细讲解如何创建一个仿微信底部菜单栏,实现类似微信聊天界面底部菜单的功能,包括菜单字体的显示与隐藏、菜单项的动态缩放等效果。 一、底部菜单栏设计 底部菜单栏(Bottom Navigation Bar)通常包含3到5...

    Android-Android仿Qzone底部导航栏加号弹出菜单

    通过以上的步骤,你可以在Android应用中实现一个类似Qzone底部导航栏的加号弹出菜单。这个过程涵盖了Android UI设计、事件处理、自定义组件等多个方面,对提升Android开发技能非常有帮助。记得根据实际需求调整和...

    Android 使用RadioGroup实现底部菜单栏

    在Android应用开发中,创建一个底部菜单栏是十分常见的需求,它可以帮助用户在多个功能之间进行切换。本篇文章将深入探讨如何使用`RadioGroup`组件来实现这样的底部导航菜单栏。 `RadioGroup`是Android SDK提供的一...

    Android-BottomNavigation仿照闲鱼的底部菜单栏可以自定义数目大小

    本项目"Android-BottomNavigation"旨在模仿闲鱼App的底部菜单栏,允许开发者根据需求自定义菜单的数量和大小,以满足更加个性化的界面设计。 在Android开发中,实现自定义BottomNavigationView的关键知识点包括: ...

    Android底部菜单栏

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

    Android - 底部菜单架构设计及封装实现

    在Android应用开发中,底部菜单(Bottom Navigation)是常见的用户界面元素,用于提供主要功能间的快速切换。本文将深入探讨如何进行底部菜单的架构设计以及封装实现,参考自...

    android使用ViewPager实现底部菜单栏和左右滑动效果,加载多个Activity

    通过以上步骤和注意事项,你将能够成功地在Android应用中实现底部菜单栏与ViewPager的结合,达到左右滑动切换多个Activity或Fragment的效果。这种设计模式在许多应用中都得到了广泛应用,提高了用户体验和交互性。

    Fragment碎片实现底部菜单栏,仿支付宝UI

    在Android应用开发中,"Fragment碎片"是一种可重用的UI组件,它可以在Activity的不同部分显示...通过以上步骤,我们就能在Android应用中实现一个功能完整且视觉效果良好的底部菜单栏,让用户在不同功能模块间轻松切换。

    android底部菜单栏

    总的来说,创建Android底部菜单栏涉及到布局设计、菜单资源定义、事件监听以及可能的样式定制。开发者需要对Android的UI组件和生命周期有深入理解,才能构建出用户体验良好的底部导航功能。通过不断实践和优化,我们...

    Android-Android-NavMenu-master一个底部导航栏实现了显示未读消息数显示红点等效果的封装

    在Android应用开发中,底部导航栏(Bottom Navigation Bar)是一种常见的设计模式,用于在多个主要功能之间切换。这个名为"Android-Android-NavMenu-master"的项目,专注于封装了一个底部导航栏组件,它包含了显示未...

    uni-app 自定义底部导航栏uni-app-bottom-navigation-master.zip

    "uni-app 自定义底部导航栏uni-app-bottom-navigation-master.zip" 是一个针对uni-app框架的项目,其核心功能是实现自定义底部导航栏。uni-app是一个多端开发框架,允许开发者使用一套代码生成包括iOS、Android、H5...

    Android五分钟让你实现底部菜单栏(fragment或者fragment+viewpager)

    在Android应用开发中,底部...通过以上方法,你可以在Android应用中轻松实现底部菜单栏,无论是简单的Fragment切换还是结合ViewPager的复杂场景。记得在实际开发中根据项目需求进行调整和优化,以提供最佳的用户体验。

    Android-BottomNavView自定义底部导航栏

    在Android应用开发中,BottomNavigationView(底部导航栏)是一个常用组件,用于在多个主功能间进行切换。在标准的Android SDK中,谷歌提供了预设的BottomNavigationView,但开发者经常需要根据设计需求对其进行...

    高仿微信底部菜单栏

    "高仿微信底部菜单栏"项目,正如标题所言,旨在提供一个无bug、即插即用的解决方案,帮助开发者快速实现类似微信底部导航栏的效果。这个项目主要涵盖了以下知识点: 1. **底部导航栏(Bottom Navigation Bar)**:...

    Android Studio 底部自定义菜单

    在`GreatWallApp`项目中,可能已经实现了这样的底部菜单,包括消息数提醒功能。消息数提醒通常需要与应用的数据模型相结合,当有新消息时,通过`BadgeView`或者在底部菜单图标上添加一个小红点来显示未读消息的数量...

    Android高级应用源码-QQ空间底部菜单.zip

    在Android开发中,实现类似QQ空间底部菜单的功能是一项常见的任务,它涉及到用户界面(UI)设计、导航控制以及自定义视图组件等多个方面。这份"Android高级应用源码-QQ空间底部菜单.zip"的压缩包提供了实现这一功能...

    Android-仿IOSQQ底部导航栏效果可自定义多种属性效果

    总之,"HelloWordFeng-BottomMenu-8972e35"是一个专注于实现可自定义的Android底部导航栏效果的项目,它结合了iOS QQ的风格和Android的灵活性,为开发者提供了一种方便的方式来构建自己的应用导航结构。通过深入理解...

    android菜单栏选项卡的实现,子activity同时重绘菜单栏

    在Android应用开发中,创建一个具有菜单栏选项卡的界面是一项常见的需求,它能提供良好的用户体验,让用户可以方便地在不同的功能模块之间切换。本文将详细介绍如何使用`TabHost`和`ActivityGroup`来实现这样的功能...

Global site tag (gtag.js) - Google Analytics