`
androidtoast
  • 浏览: 210460 次
  • 性别: Icon_minigender_1
  • 来自: 北京
博客专栏
38befa0e-3f74-3314-92d9-475c7fc3c19b
Android学习——入门...
浏览量:124578
社区版块
存档分类
最新评论

android底部菜单应用

阅读更多

在android中实现菜单功能有多种方法。

Options Menu:用户按下menu Button时显示的菜单。

Context Menu:用户长时间按下屏幕,所显示出来的菜单也称为上下文菜单。

Submenu:子菜单。

但是有时候这些内置的菜单并不能满足我们功能,这就需要自己自定义一种菜单。接下来我说的这种就是通过TabHost与RadioGroup结合完成的菜单。这也是很常用的一种底部菜单做法。先上图:

 



 

首先看布局文件:

 

 

<?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:background="@drawable/maintab_toolbar_bg"    
            android:layout_width="fill_parent"    
            android:layout_height="wrap_content">  
            <RadioButton    
                android:id="@+id/radio_button0"    
                android:tag="radio_button0"    
                android:layout_marginTop="2.0dip"    
                android:text="@string/alarm"    
                android:drawableTop="@drawable/icon_1"    
                style="@style/main_tab_bottom" />  
            <RadioButton    
                android:id="@+id/radio_button1"    
                android:tag="radio_button1"    
                android:layout_marginTop="2.0dip"    
                android:text="@string/message"    
                android:drawableTop="@drawable/icon_2"    
                style="@style/main_tab_bottom" />  
            <RadioButton    
                android:id="@+id/radio_button2"    
                android:tag="radio_button2"    
                android:layout_marginTop="2.0dip"    
                android:text="@string/photo"    
                android:drawableTop="@drawable/icon_3"    
                style="@style/main_tab_bottom" />  
            <RadioButton    
                android:id="@+id/radio_button3"    
                android:tag="radio_button3"    
                android:layout_marginTop="2.0dip"    
                android:text="@string/music"    
                android:drawableTop="@drawable/icon_4"    
                style="@style/main_tab_bottom" />  
            <RadioButton    
                android:id="@+id/radio_button4"    
                android:tag="radio_button4"    
                android:layout_marginTop="2.0dip"    
                android:text="@string/setting"    
                android:drawableTop="@drawable/icon_5"    
                style="@style/main_tab_bottom" />  
        </RadioGroup>  
    </LinearLayout>  
</TabHost>  

 

 

 

需要注意的是,如果用TabHost这个控件,其中有几个ID是必须这么写的,android:id="@android:id/tabhost   ;android:id="@android:id/tabcontent" ;android:id="@android:id/tabs" ;之所以要这么写是因为在TabHost这个类中。需要实例化上述这个ID的控件。看源码:

 

在TabActivity类中有么个方法:

 

@Override  
   public void onContentChanged() {   
       super.onContentChanged();   
       mTabHost = (TabHost) findViewById(com.android.internal.R.id.tabhost);   
  
       if (mTabHost == null) {   
           throw new RuntimeException(   
                   "Your content must have a TabHost whose id attribute is " +   
                   "'android.R.id.tabhost'");   
       }   
       mTabHost.setup(getLocalActivityManager());   
   } 

 

 

 当内容发生改变时它会调用这个方法,来更新列表或者其他视图,而这个方法中需要实例化TabHost,所以必须通过ID为tabhost实例化。

 

再看看TabHost这个类中,

 

 

public void setup() {   
      mTabWidget = (TabWidget) findViewById(com.android.internal.R.id.tabs);   
      if (mTabWidget == null) {   
          throw new RuntimeException(   
                  "Your TabHost must have a TabWidget whose id attribute is 'android.R.id.tabs'");   
      }   
  
      // KeyListener to attach to all tabs. Detects non-navigation keys   
      // and relays them to the tab content.   
      mTabKeyListener = new OnKeyListener() {   
          public boolean onKey(View v, int keyCode, KeyEvent event) {   
              switch (keyCode) {   
                  case KeyEvent.KEYCODE_DPAD_CENTER:   
                  case KeyEvent.KEYCODE_DPAD_LEFT:   
                  case KeyEvent.KEYCODE_DPAD_RIGHT:   
                  case KeyEvent.KEYCODE_DPAD_UP:   
                  case KeyEvent.KEYCODE_DPAD_DOWN:   
                  case KeyEvent.KEYCODE_ENTER:   
                      return false;   
  
              }   
              mTabContent.requestFocus(View.FOCUS_FORWARD);   
              return mTabContent.dispatchKeyEvent(event);   
          }   
  
      };   
  
      mTabWidget.setTabSelectionListener(new TabWidget.OnTabSelectionChanged() {   
          public void onTabSelectionChanged(int tabIndex, boolean clicked) {   
              setCurrentTab(tabIndex);   
              if (clicked) {   
                  mTabContent.requestFocus(View.FOCUS_FORWARD);   
              }   
          }   
      });   
  
      mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);   
      if (mTabContent == null) {   
          throw new RuntimeException(   
                  "Your TabHost must have a FrameLayout whose id attribute is "  
                          + "'android.R.id.tabcontent'");   
      }   
  }  

 

 

 

 这个方法,是在增加选项卡之前由系统调用。在这个方法中需要通过tabs 这个ID实例化一个TabWidget,通过tabcontent这个ID实例化一个FrameLayout,用来放置选项卡内容。所以这两个ID也是固定的。

 

在上述布局文件中隐藏了系统默认的Widget,取而代之的是带有图片的Button。

 

看一下主要代码:

 

package com.iteye.androidtoast;   
  
import android.app.TabActivity;   
import android.content.Intent;   
import android.os.Bundle;   
import android.widget.RadioGroup;   
import android.widget.RadioGroup.OnCheckedChangeListener;   
import android.widget.TabHost;   
  
public class MainActivity extends TabActivity implements OnCheckedChangeListener{   
    /** Called when the activity is first created. */  
    private TabHost mHost;   
    private RadioGroup radioderGroup;   
    @Override  
    public void onCreate(Bundle savedInstanceState) {   
        super.onCreate(savedInstanceState);   
        setContentView(R.layout.maintabs);   
        //实例化TabHost   
        mHost=this.getTabHost();   
           
        //添加选项卡   
        mHost.addTab(mHost.newTabSpec("ONE").setIndicator("ONE")   
                    .setContent(new Intent(this,OneActivity.class)));   
        mHost.addTab(mHost.newTabSpec("TWO").setIndicator("TWO")   
                .setContent(new Intent(this,TwoActivity.class)));   
        mHost.addTab(mHost.newTabSpec("THREE").setIndicator("THREE")   
                .setContent(new Intent(this,ThreeActivity.class)));   
        mHost.addTab(mHost.newTabSpec("FOUR").setIndicator("FOUR")   
                .setContent(new Intent(this,FourActivity.class)));   
        mHost.addTab(mHost.newTabSpec("FIVE").setIndicator("FIVE")   
                .setContent(new Intent(this,FiveActivity.class)));   
           
        radioderGroup = (RadioGroup) findViewById(R.id.main_radio);   
        radioderGroup.setOnCheckedChangeListener(this);   
    }   
    @Override  
    public void onCheckedChanged(RadioGroup group, int checkedId) {   
        switch(checkedId){   
        case R.id.radio_button0:   
            mHost.setCurrentTabByTag("ONE");   
            break;   
        case R.id.radio_button1:   
            mHost.setCurrentTabByTag("TWO");   
            break;   
        case R.id.radio_button2:   
            mHost.setCurrentTabByTag("THREE");   
            break;   
        case R.id.radio_button3:   
            mHost.setCurrentTabByTag("FOUR");   
            break;   
        case R.id.radio_button4:   
            mHost.setCurrentTabByTag("FIVE");   
            break;   
        }          
    }   
}  

 

 

 这个应该没有什么好难理解的。OK该睡了。有什么问题留言!

 

  • 大小: 247 KB
分享到:
评论

相关推荐

    Android底部菜单和侧滑菜单的综合应用

    里面有引导页和登录页面供大家参考。Android底部菜单和侧滑菜单的综合应用,大家不下载的可以去看源码http://blog.csdn.net/u012600997/article/details/50686472

    Android自定义底部菜单

    在Android的应用中,经常会见到底部菜单.而在企业级的Android应用中,也存在同样的需求,但与微信这些大众软件的区别在于企业级的Android应用由于UI页面很多,每个页面都需要有底部菜单,而且每个页面的底部菜单按钮...

    Android 底部菜单.zip项目安卓应用源码下载

    Android 底部菜单.zip项目安卓应用源码下载Android 底部菜单.zip项目安卓应用源码下载 1.适合学生毕业设计研究参考 2.适合个人学习研究参考 3.适合公司开发项目技术参考

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

    仿微信底部菜单栏 底部菜单字体显示隐藏 底部菜单缩放等等

    android 底部菜单栏

    android 应用 底部菜单栏的实现LinearLayout

    Android底部菜单简单应用

    在Android中实现菜单功能有多种方法。 Options Menu:用户按下menu ...这也是很常用的一种底部菜单做法。先上图: Xml代码 &lt;?xml version=1.0 encoding=UTF-8?&gt; &lt;TabHost android:id=@android:id/tabhost

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

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

    Android 底部菜单.rar

    Android 开发应用源码 参考学习使用

    Android 底部菜单.zip

    Android 应用项目开发源码 参考和学习使用

    Android 底部菜单-IT计算机-毕业设计.zip

    Android应用源码开发Demo,主要用于毕业设计学习。

    Android App 底部导航菜单栏demo_可自由滑动

    本实例完成了App底部导航菜单自由滑动,仿微信主界面,可直接应用于项目开发。

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

    底部菜单栏很重要,我看了一下很多应用软件都是用了底部菜单栏做。我这里使用了tabhost做了一种通用的(就是可以像微信那样显示未读消息数量的,虽然之前也做过但是layout下的xml写的太臃肿,这里去掉了很多不必要...

    Android实现美团APP的底部滑动菜单

    在现在的APP的应用中,类似仿美团APP的底部滑动菜单,应用是挺多的,例如QQ,微信,支付宝都应用到。开发流程如下 1. 底部按钮 底部按钮使用RadioButton。 // 按钮布局 &lt;LinearLayout android:id=@+id/llradiogroup...

    Android应用源码安卓源码(172个合集).zip

    Android应用源码安卓源码(172个合集),可以做为你的学习参考。 365MobileSecretary v1.0.6(365手机助手AIDL) 888个经典 Logo.rar AdXmpp(Openfire+asmack+spark) .zip AidlDemo(简单aidl的例子) aidl跨进程调用....

    android 菜单导航栏

    这是国外大牛搞的底部卫星菜单,代码简洁易懂,适合比较活泼的应用。习惯了底部导航栏fragment切换的你是否想要换一下。

    Android平台手机UI应用开发——软件管理器

    功能: 在应用上分为:系统应用和用户应用 在界面上实现应用列表的两种视图:列表视图和网格视图 在功能上实现应用的启动...以及底部菜单的美化。 详情见博客http://blog.csdn.net/yalin18/article/details/7377729

    Android 主流侧滑菜单框架 源码

    android市面主流侧滑框架,本架构主要实现侧滑出现底部view和首页实现tabhost效果,并且...本项目主要底部TabFragment和左边侧滑DragLayout 以及CustomViewPager 实现,并且提供退出应用的一种关闭所有acitiviy的方式。

Global site tag (gtag.js) - Google Analytics