文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2022-06-06 08:24

关注

底部菜单栏很重要,我看了一下很多应用软件都是用了底部菜单栏,这里使用了tabhost做了一种通用的(就是可以像微信那样显示未读消息数量的,虽然之前也做过但是layout下的xml写的太臃肿,这里去掉了很多不必要的层,个人看起来还是不错的,所以贴出来方便以后使用)。
先看一下做出来之后的效果:


以后使用的时候就可以换成自己项目的图片和字体了,主框架不用变哈哈,
首先是要布局layout下xml文件 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:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@color/bg_gray" 
    android:orientation="vertical" > 
    <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" /> 
    <FrameLayout 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" > 
      <RadioGroup 
        android:id="@+id/main_tab_group" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_gravity="bottom" 
        android:background="@drawable/bottom1" 
        android:gravity="bottom" 
        android:orientation="horizontal" 
         > 
        <RadioButton 
          android:id="@+id/main_tab_addExam" 
          style="@style/MMTabButton" 
          android:layout_weight="1.0"   
          android:drawableTop="@drawable/bg_checkbox_icon_menu_0" 
          android:text="添加考试" /> 
        <RadioButton 
          android:id="@+id/main_tab_myExam" 
          style="@style/MMTabButton" 
          android:layout_weight="1.0" 
          android:checked="true" 
          android:drawableTop="@drawable/bg_checkbox_icon_menu_1" 
          android:text="我的考试" /> 
        <RadioButton 
          android:id="@+id/main_tab_message" 
          style="@style/MMTabButton" 
          android:layout_weight="1.0" 
          android:drawableTop="@drawable/bg_checkbox_icon_menu_2" 
          android:text="我的通知" /> 
        <RadioButton 
          android:id="@+id/main_tab_settings" 
          style="@style/MMTabButton" 
          android:layout_weight="1.0"   
          android:drawableTop="@drawable/bg_checkbox_icon_menu_3" 
          android:text="设置" /> 
      </RadioGroup> 
      <TextView 
        android:id="@+id/main_tab_new_message" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_gravity="center_horizontal|top" 
        android:layout_marginLeft="60dip" 
        android:layout_marginTop="1dip" 
        android:background="@drawable/tips" 
        android:gravity="center" 
        android:text="1" 
        android:textColor="#ffffff" 
        android:textSize="10sp" 
        android:visibility="gone" /> 
    </FrameLayout> 
  </LinearLayout> 
</TabHost> 

在RadioGroup的外面加了一个FrameLayout,主要是为了使用TextView显示消息数量,这里是居中靠左60dip,可能你会问直接写死能支持多分辨率吗,这个我在320*480的手机上试过没问题的,因为dip是与设备无关的支持多分辨率,至于1280*800平板电脑这样的分辨率我就不能保证了,哈哈!
接下来是样式布局:


<style name="MMTabButton"> 
  <item name="android:textSize">12.0dip</item> 
  <item name="android:gravity">center_horizontal</item> 
  <item name="android:background">@drawable/bg_checkbox_menus</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:textColor">@color/white</item> 
  <item name="android:layout_weight">1.0</item> 
  <item name="android:paddingBottom">2.0dip</item> 
  <item name="android:paddingTop">2.0dip</item> 
</style> 

在drawable下bg_checkbox_menus.xml


<?xml version="1.0" encoding="utf-8"?>  
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
  <item  
  android:state_checked="false"  
  android:drawable="@drawable/mm_trans" />  
  <item  
  android:state_checked="true"  
  android:drawable="@drawable/home_btn_bg" />  
</selector>  

其他的那四个都合这个一样点击后图片换成亮色的,所以就不一一贴出来了。
最后看MainActivity这个类:


package cn.com.karl.test;  
import android.app.TabActivity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.view.View; 
import android.view.Window; 
import android.widget.RadioGroup; 
import android.widget.RadioGroup.OnCheckedChangeListener; 
import android.widget.TabHost; 
import android.widget.TextView; 
public class MainActivity extends TabActivity { 
   
  private TabHost tabHost; 
  private TextView main_tab_new_message; 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    this.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    setContentView(R.layout.main); 
    main_tab_new_message=(TextView) findViewById(R.id.main_tab_new_message); 
    main_tab_new_message.setVisibility(View.VISIBLE); 
    main_tab_new_message.setText("10"); 
    tabHost=this.getTabHost(); 
    TabHost.TabSpec spec; 
    Intent intent; 
    intent=new Intent().setClass(this, AddExamActivity.class); 
    spec=tabHost.newTabSpec("添加考试").setIndicator("添加考试").setContent(intent); 
    tabHost.addTab(spec); 
    intent=new Intent().setClass(this,MyExamActivity.class); 
    spec=tabHost.newTabSpec("我的考试").setIndicator("我的考试").setContent(intent); 
    tabHost.addTab(spec); 
    intent=new Intent().setClass(this, MyMessageActivity.class); 
    spec=tabHost.newTabSpec("我的通知").setIndicator("我的通知").setContent(intent); 
    tabHost.addTab(spec); 
    intent=new Intent().setClass(this, SettingActivity.class); 
    spec=tabHost.newTabSpec("设置").setIndicator("设置").setContent(intent); 
    tabHost.addTab(spec); 
    tabHost.setCurrentTab(1); 
    RadioGroup radioGroup=(RadioGroup) this.findViewById(R.id.main_tab_group); 
    radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() { 
      @Override 
      public void onCheckedChanged(RadioGroup group, int checkedId) { 
        // TODO Auto-generated method stub 
        switch (checkedId) { 
        case R.id.main_tab_addExam://添加考试 
          tabHost.setCurrentTabByTag("添加考试"); 
          break; 
        case R.id.main_tab_myExam://我的考试 
          tabHost.setCurrentTabByTag("我的考试"); 
          break; 
        case R.id.main_tab_message://我的通知 
          tabHost.setCurrentTabByTag("我的通知"); 
          break; 
        case R.id.main_tab_settings://设置 
          tabHost.setCurrentTabByTag("设置"); 
          break; 
        default: 
          //tabHost.setCurrentTabByTag("我的考试"); 
          break; 
        } 
      } 
    }); 
  } 
} 

这样就完成了,主要还是使用了tabhost完成,tabhost有缓存机制这四个界面都会缓存到内存中,这样即有利也有弊,有利是因为切换的时候不用在重新加载了,有弊是因为缓存四个界面会耗费内存较多一些。如果只想缓存一个界面,大家可以参考这篇文章:Android项目实战之仿网易顶部导航栏效果,使用ActivityGroup实现顶部滑动栏,就像网易新闻的顶部滑动栏我相信也是只缓存了一个界面,切换的时候是从数据库加载的,所以第二次滑动加载会比较快。

本文源码下载地址:Android仿微信底部菜单栏

您可能感兴趣的文章:android底部菜单栏实现原理与代码Android仿QQ空间底部菜单示例代码Android仿UC底部菜单栏实现原理与代码Android PopupWindow实现右侧、左侧和底部弹出菜单Android仿微信顶/底部菜单栏效果Android开发之微信底部菜单栏实现的几种方法汇总Android使用Activity实现从底部弹出菜单或窗口的方法Android中底部菜单被输入法顶上去的解决方案Android仿网易严选底部弹出菜单效果Android使用CoordinatorLayout实现底部弹出菜单


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯