android底部菜单栏demo(未读消息提示)

2023-10-14 00:48

本文主要是介绍android底部菜单栏demo(未读消息提示),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

           上一个项目已经做完了,这周基本上没事,所以整理了下以前的项目,想把一些通用的部分封装起来,这样以后遇到相似的项目就不用重复发明轮子了,也节省了开发效率。今天把demo贴出来一是方便以后自己查询,二是希望同时也能帮到大家。

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

          先看一下做出来之后的效果:

 

       以后使用的时候就可以换成自己项目的图片和字体了,主框架不用变哈哈。

      首先是要布局layout下xml文件 main.xml:

 

[html] view plain copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:id="@android:id/tabhost"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent" >  
  6.   
  7.     <LinearLayout  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="fill_parent"  
  10.         android:background="@color/bg_gray"  
  11.         android:orientation="vertical" >  
  12.   
  13.         <FrameLayout  
  14.             android:id="@android:id/tabcontent"  
  15.             android:layout_width="fill_parent"  
  16.             android:layout_height="0.0dip"  
  17.             android:layout_weight="1.0" />  
  18.   
  19.         <TabWidget  
  20.             android:id="@android:id/tabs"  
  21.             android:layout_width="fill_parent"  
  22.             android:layout_height="wrap_content"  
  23.             android:layout_weight="0.0"  
  24.             android:visibility="gone" />  
  25.   
  26.         <FrameLayout  
  27.             android:layout_width="fill_parent"  
  28.             android:layout_height="wrap_content" >  
  29.   
  30.             <RadioGroup  
  31.                 android:id="@+id/main_tab_group"  
  32.                 android:layout_width="fill_parent"  
  33.                 android:layout_height="wrap_content"  
  34.                 android:layout_gravity="bottom"  
  35.                 android:background="@drawable/bottom1"  
  36.                 android:gravity="bottom"  
  37.                 android:orientation="horizontal"  
  38.                  >  
  39.   
  40.                 <RadioButton  
  41.                     android:id="@+id/main_tab_addExam"  
  42.                     style="@style/MMTabButton"  
  43.                     android:layout_weight="1.0"      
  44.                     android:drawableTop="@drawable/bg_checkbox_icon_menu_0"  
  45.                     android:text="添加考试" />  
  46.   
  47.                 <RadioButton  
  48.                     android:id="@+id/main_tab_myExam"  
  49.                     style="@style/MMTabButton"  
  50.                     android:layout_weight="1.0"  
  51.                     android:checked="true"  
  52.                     android:drawableTop="@drawable/bg_checkbox_icon_menu_1"  
  53.                     android:text="我的考试" />  
  54.   
  55.                 <RadioButton  
  56.                     android:id="@+id/main_tab_message"  
  57.                     style="@style/MMTabButton"  
  58.                     android:layout_weight="1.0"  
  59.                     android:drawableTop="@drawable/bg_checkbox_icon_menu_2"  
  60.                     android:text="我的通知" />  
  61.   
  62.                 <RadioButton  
  63.                     android:id="@+id/main_tab_settings"  
  64.                     style="@style/MMTabButton"  
  65.                     android:layout_weight="1.0"     
  66.                     android:drawableTop="@drawable/bg_checkbox_icon_menu_3"  
  67.                     android:text="设置" />  
  68.             </RadioGroup>  
  69.   
  70.             <TextView  
  71.                 android:id="@+id/main_tab_new_message"  
  72.                 android:layout_width="wrap_content"  
  73.                 android:layout_height="wrap_content"  
  74.                 android:layout_gravity="center_horizontal|top"  
  75.                 android:layout_marginLeft="60dip"  
  76.                 android:layout_marginTop="1dip"  
  77.                 android:background="@drawable/tips"  
  78.                 android:gravity="center"  
  79.                 android:text="1"  
  80.                 android:textColor="#ffffff"  
  81.                 android:textSize="10sp"  
  82.                 android:visibility="gone" />  
  83.         </FrameLayout>  
  84.     </LinearLayout>  
  85.   
  86. </TabHost>  

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

      接下来是样式布局:

[html] view plain copy
  1. <style name="MMTabButton">  
  2.     <item name="android:textSize">12.0dip</item>  
  3.     <item name="android:gravity">center_horizontal</item>  
  4.     <item name="android:background">@drawable/bg_checkbox_menus</item>  
  5.     <item name="android:layout_width">fill_parent</item>  
  6.     <item name="android:layout_height">wrap_content</item>  
  7.     <item name="android:button">@null</item>  
  8.     <item name="android:textColor">@color/white</item>  
  9.     <item name="android:layout_weight">1.0</item>  
  10.     <item name="android:paddingBottom">2.0dip</item>  
  11.     <item name="android:paddingTop">2.0dip</item>  
  12. </style>  

       在drawable下bg_checkbox_menus.xml

   

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>   
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">   
  3.     <item   
  4.     android:state_checked="false"   
  5.     android:drawable="@drawable/mm_trans" />   
  6.     <item   
  7.     android:state_checked="true"   
  8.     android:drawable="@drawable/home_btn_bg" />   
  9. </selector>   

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

     最后看MainActivity这个类:

[html] view plain copy
  1. package cn.com.karl.test;  
  2.   
  3.   
  4.   
  5. import android.app.TabActivity;  
  6. import android.content.Intent;  
  7. import android.os.Bundle;  
  8. import android.view.View;  
  9. import android.view.Window;  
  10. import android.widget.RadioGroup;  
  11. import android.widget.RadioGroup.OnCheckedChangeListener;  
  12. import android.widget.TabHost;  
  13. import android.widget.TextView;  
  14.   
  15. public class MainActivity extends TabActivity {  
  16.     /** Called when the activity is first created. */  
  17.     private TabHost tabHost;  
  18.     private TextView main_tab_new_message;  
  19.       
  20.     @Override  
  21.     public void onCreate(Bundle savedInstanceState) {  
  22.         super.onCreate(savedInstanceState);  
  23.         this.requestWindowFeature(Window.FEATURE_NO_TITLE);  
  24.         setContentView(R.layout.main);  
  25.           
  26.         main_tab_new_message=(TextView) findViewById(R.id.main_tab_new_message);  
  27.         main_tab_new_message.setVisibility(View.VISIBLE);  
  28.         main_tab_new_message.setText("10");  
  29.           
  30.         tabHost=this.getTabHost();  
  31.         TabHost.TabSpec spec;  
  32.         Intent intent;  
  33.   
  34.         intent=new Intent().setClass(this, AddExamActivity.class);  
  35.         spec=tabHost.newTabSpec("添加考试").setIndicator("添加考试").setContent(intent);  
  36.         tabHost.addTab(spec);  
  37.           
  38.         intent=new Intent().setClass(this,MyExamActivity.class);  
  39.         spec=tabHost.newTabSpec("我的考试").setIndicator("我的考试").setContent(intent);  
  40.         tabHost.addTab(spec);  
  41.           
  42.         intent=new Intent().setClass(this, MyMessageActivity.class);  
  43.         spec=tabHost.newTabSpec("我的通知").setIndicator("我的通知").setContent(intent);  
  44.         tabHost.addTab(spec);  
  45.           
  46.        
  47.         intent=new Intent().setClass(this, SettingActivity.class);  
  48.         spec=tabHost.newTabSpec("设置").setIndicator("设置").setContent(intent);  
  49.         tabHost.addTab(spec);  
  50.         tabHost.setCurrentTab(1);  
  51.           
  52.         RadioGroup radioGroup=(RadioGroup) this.findViewById(R.id.main_tab_group);  
  53.         radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {  
  54.               
  55.             @Override  
  56.             public void onCheckedChanged(RadioGroup group, int checkedId) {  
  57.                 // TODO Auto-generated method stub  
  58.                 switch (checkedId) {  
  59.                 case R.id.main_tab_addExam://添加考试  
  60.                     tabHost.setCurrentTabByTag("添加考试");  
  61.                     break;  
  62.                 case R.id.main_tab_myExam://我的考试  
  63.                     tabHost.setCurrentTabByTag("我的考试");  
  64.                     break;  
  65.                 case R.id.main_tab_message://我的通知  
  66.                     tabHost.setCurrentTabByTag("我的通知");  
  67.                     break;  
  68.                 case R.id.main_tab_settings://设置  
  69.                     tabHost.setCurrentTabByTag("设置");  
  70.                     break;  
  71.                 default:  
  72.                     //tabHost.setCurrentTabByTag("我的考试");  
  73.                     break;  
  74.                 }  
  75.             }  
  76.         });  
  77.     }  
  78.       
  79.      
  80. }  

        这样就完成了,主要还是使用了tabhost完成,tabhost有缓存机制这四个界面都会缓存到内存中,这样即有利也有弊,有利是因为切换的时候不用在重新加载了,有弊是因为缓存四个界面会耗费内存较多一些。如果只想缓存一个界面以后下一篇我会使用ActivityGroup实现顶部滑动栏,就像网易新闻的顶部滑动栏我相信也是只缓存了一个界面,切换的时候是从数据库加载的,所以第二次滑动加载会比较快。        最后奉上下载地址,如果有需要的希望大家自己去下载吧,有些代码存在本地时间长了我也会弄丢。 [rar文件] android底部菜单栏demo

这篇关于android底部菜单栏demo(未读消息提示)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/206985

相关文章

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

android应用中res目录说明

Android应用的res目录是一个特殊的项目,该项目里存放了Android应用所用的全部资源,包括图片、字符串、颜色、尺寸、样式等,类似于web开发中的public目录,js、css、image、style。。。。 Android按照约定,将不同的资源放在不同的文件夹中,这样可以方便的让AAPT(即Android Asset Packaging Tool , 在SDK的build-tools目

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR

ActiveMQ—消息特性(延迟和定时消息投递)

ActiveMQ消息特性:延迟和定时消息投递(Delay and Schedule Message Delivery) 转自:http://blog.csdn.net/kimmking/article/details/8443872 有时候我们不希望消息马上被broker投递出去,而是想要消息60秒以后发给消费者,或者我们想让消息没隔一定时间投递一次,一共投递指定的次数。。。 类似