Android Fragment实现底部通知栏

Android Fragment实现底部通知栏,供大家参考,具体内容如下

截图如下:

1. 第一步先要创建fragment(动态注册)

然后将两个勾选取消掉(还有一种是自己手动创建)
会自动生成相对应的layout布局,剩下的要根据自己的需求了

2.在Activity的布局里写好四个按钮

这里不是重点…

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  >
<LinearLayout
  android:id="@+id/ll_content_part"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  >
</LinearLayout>
<LinearLayout
  android:id="@+id/ll_function"
  android:layout_alignParentBottom="true"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

<Button
  android:id="@+id/btn_msg_list"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:layout_weight="1"
  android:textSize="13dp"
  android:onClick="click"
  android:text="msg"/>
  <Button
    android:id="@+id/btn_contact"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textSize="13dp"
    android:onClick="click"
    android:text="contact"/>
  <Button
    android:id="@+id/btn_disc"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textSize="13dp"
    android:onClick="click"
    android:text="disc"/>
  <Button
    android:id="@+id/btn_me"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textSize="13dp"
    android:onClick="click"
    android:text="me"/>
</LinearLayout>
</RelativeLayout>

3.Activity的代码

其中定义了四个整型常量记录了四个按钮的状态,还有一个当前状态,进而判断当前点击按钮的状态,点击切换文字颜色和图标
每次判断四个Fragment的引用是否为空,不为空就不需要每次在new一遍Fragment
replace每次都会重新初始化fragment,它是先remove掉相同id的fragment,再add当前fragment。
add不会回每次都初始化fragment,一般配合hide()和show()方法

public class MainActivity extends AppCompatActivity {

  private Button btn_contact;
  private Button btn_disc;
  private Button btn_me;
  private Button btn_msg_list;
  private FragmentManager fragmentManager;
  private MsgListFragment msgListFragment;
  private ContactFragment contactFragment;
  private DiscoveryFragment discoveryFragment;
  private MeFragment meFragment;

  private final int STATE_MSG =1;
  private final int STATE_CON =2;
  private final int STATE_DIS =3;
  private final int STATE_ME =4;
  private int currentState;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initView();
    initData();
    chageButtonColor(currentState,STATE_MSG);
  }

  private void initData() {
    fragmentManager = getFragmentManager();
    switchFragment(this.STATE_MSG);
  }

  private void initView() {
    btn_contact = (Button) findViewById(R.id.btn_contact);
    btn_disc = (Button) findViewById(R.id.btn_disc);
    btn_me = (Button) findViewById(R.id.btn_me);
    btn_msg_list = (Button) findViewById(R.id.btn_msg_list);
  }

  public void click(View view) {

    switch (view.getId()){
      case R.id.btn_msg_list:

        switchFragment(this.STATE_MSG);
        break;
      case R.id.btn_contact:
        switchFragment(this.STATE_CON);
        break;

      case R.id.btn_disc:
        switchFragment(this.STATE_DIS);
        break;
      case R.id.btn_me:
        switchFragment(this.STATE_ME);
        break;
    }
  }

  private void switchFragment(int toState) {

    if (toState == currentState)
      return;
    chageButtonColor(currentState,toState);
    this.currentState=toState;

    FragmentTransaction transaction = this.fragmentManager.beginTransaction();

    Fragment fragment=msgListFragment;
    switch (toState){
      case STATE_DIS:
        if (discoveryFragment == null)
          discoveryFragment= new DiscoveryFragment();
        fragment= discoveryFragment;
        break;
      case STATE_ME:
        if (meFragment == null)
          meFragment= new MeFragment();
        fragment= meFragment;
        break;
      case STATE_CON:
        if (contactFragment == null)
          contactFragment= new ContactFragment();
        fragment= contactFragment;
        break;
      case STATE_MSG:
        if (msgListFragment == null)
          msgListFragment= new MsgListFragment();
        fragment= msgListFragment;
        break;
    }
    transaction.replace(R.id.ll_content_part,fragment);
    transaction.commit();
  }

  private void chageButtonColor(int currentState,int toState){

    switch (currentState){
      case STATE_DIS:
        this.btn_disc.setTextColor(Color.BLACK);
        break;
        case STATE_ME:
          this.btn_me.setTextColor(Color.BLACK);
        break;
      case STATE_CON:
        this.btn_contact.setTextColor(Color.BLACK);
        break;
      case STATE_MSG:
        this.btn_msg_list.setTextColor(Color.BLACK);
        break;
    }
    switch (toState){
      case STATE_DIS:
        this.btn_disc.setTextColor(Color.GREEN);
        break;
      case STATE_ME:
        this.btn_me.setTextColor(Color.GREEN);
        break;
      case STATE_CON:
        this.btn_contact.setTextColor(Color.GREEN);
        break;
      case STATE_MSG:
        this.btn_msg_list.setTextColor(Color.GREEN);
        break;
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • android实现通知栏下载更新app示例

    1.设计思路,使用VersionCode定义为版本升级参数.android为我们定义版本提供了2个属性: 复制代码 代码如下: <manifest package="com.cnblogs.tianxia.subway"android:versionCode="1" <!--Integer类型,系统不显示给用户-->android:versionName="1.0"<!--String类型,系统显示用户-->>

  • Android开发之禁止下拉通知栏的方法

    本文实例讲述了Android开发之禁止下拉通知栏的方法.分享给大家供大家参考,具体如下: 1.在AndroidManifest.xml中添加权限 <uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/> <uses-permission android:name="android.permission.STATUS_BAR"/> 2.在相应的activity中

  • Android实现沉浸式通知栏通知栏背景颜色跟随app导航栏背景颜色而改变

    最近好多app都已经满足了沉浸式通知栏, 所谓沉浸式通知栏:就是把用来导航的各种界面操作空间隐藏在以程序内容为主的情景中,通过相对"隐形"的界面来达到把用户可视范围最大化地用到内容本身上. 而最新安卓4.4系统的通知栏沉浸模式就是在软件打开的时候通知栏和软件顶部颜色融为一体,这样不仅可以使软件和系统本身更加融为一体. 就是手机的通知栏的颜色不再是白色.黑色简单的两种了,本人用的小米4手机,米4手机中的自带软件都支持沉浸式通知栏, 举个例子:大家可以看一下自己的qq,它的标题的背景颜色是

  • android使用NotificationListenerService监听通知栏消息

    NotificationListenerService是通过系统调起的服务,在应用发起通知时,系统会将通知的应用,动作和信息回调给NotificationListenerService.但使用之前需要引导用户进行授权.使用NotificationListenerService一般需要下面三个步骤. 注册服务 首先需要在AndroidManifest.xml对service进行注册. <service android:name=".NotificationCollectorService&q

  • 关于Android中点击通知栏的通知启动Activity问题解决

    前言 最近遇到一个很奇葩的问题,终于解决了,所以想着记录一下,方便大家或者自己以后有需要的时候可以参考学习. 问题场景 用小米手机使用小米推送一条消息,然后点击通知栏中的消息启动应用,然后进入会话的Activity.应用启动后,如果当前界面不是会话界面,那么新消息会在通知栏显示消息提醒,然后点击会话消息后却进不了会话的Activity,即点击了通知栏通知后,系统都没有启动指定Activity的意思,没有看到系统启动Activity的Log,到是会看到系统处理这个Activity的影子. 这个指定

  • Android程序版本更新之通知栏更新下载安装

    Android应用检查版本更新后,在通知栏下载,更新下载进度,下载完成自动安装,效果图如下: •检查当前版本号 AndroidManifest文件中的versionCode用来标识版本,在服务器放一个新版本的apk,versioncode大于当前版本,下面代码用来获取versioncode的值 PackageInfo packageInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0); int

  • Android不使用自定义布局情况下实现自定义通知栏图标的方法

    本文实例讲述了Android不使用自定义布局情况下实现自定义通知栏图标的方法.分享给大家供大家参考,具体如下: 自定义通知栏图标?不是很简单么.自定义布局都不在话下! 是的,有xml布局文件当然一切都很简单,如果不给你布局文件用呢? 听我慢慢道来! 首先怎么创建一个通知呢? 1.new 一个 复制代码 代码如下: Notification n = new Notification(android.R.drawable.ic_menu_share, null, System.currentTime

  • Android实现通知栏透明的方法

    这个特性是andorid4.4支持的,最少要api19才可以使用,也就是说如果Android的机子是低于4.4,沉浸通知栏是没有效果的.下面介绍一下使用的方法,非常得简单. /** * 设置通知栏 这个方法在onCreate()实现,如果是在父类的onCreate()中添加,即使所有继承了该父类都会有沉浸通知栏. */ public void initSystemBar() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

  • Android开发之使用通知栏显示提醒信息的方法

    本文实例讲述了Android开发之使用通知栏显示提醒信息的方法.分享给大家供大家参考,具体如下: 用通知栏来提醒 public void notifyKJ() { //获得通知管理器,通知是一项系统服务 NotificationManager manager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE); //初始化通知对象 p1:通知的图标 p2:通知的状态栏显示的提示 p3:通知显

  • android中创建通知栏Notification代码实例

    ///// 第一步:获取NotificationManager NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); ///// 第二步:定义Notification Intent intent = new Intent(this, OtherActivity.class); //PendingIntent是待执行的Intent PendingIntent pi

随机推荐