Android仿qq顶部消息栏效果

 更新时间:2018年04月11日 09:42:48   作者:cf8833  
这篇文章主要介绍了Android仿qq顶部消息栏效果,需要的朋友可以参考下

android仿照qq的顶部栏效果,主要就是利用fragment manager把fragment设置显示内容

(1)在activity_main.xml布局中添加控件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <LinearLayout
    android:id="@+id/ll_qqtop"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:orientation="horizontal"
    android:gravity="center"
    android:background="@color/whites">
    <LinearLayout
      android:id="@+id/common_constact"
      android:layout_height="40dp"
      android:layout_width="150dp"
      android:orientation="horizontal"
      android:layout_centerHorizontal="true"
      android:layout_alignParentTop="true">
      <Button
        android:id="@+id/constact_group"
        android:layout_height="match_parent"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:padding="5dp"
        android:textSize="16sp"
        android:button="@null"
        android:checked="true"
        android:background="@drawable/qq_contact_group"
        android:textColor="@drawable/qq_constact_font"
        android:text="消息"/>
      <Button
        android:button="@null"
        android:id="@+id/constact_all"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="16sp"
        android:padding="5dp"
        android:background="@drawable/qq_contact_all"
        android:textColor="@drawable/qq_constact_font"
        android:text="电话"/>
    </LinearLayout>
  </LinearLayout>
  <FrameLayout
    android:id="@+id/id_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/ll_qqtop" />
</RelativeLayout>

(2)在drawable中添加样式文件,包括字体颜色和背景

2.1.在drawable文件夹中新建一个文件:qq_contact_group.xml,这个是左边按钮的背景样式xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_enabled="false"><shape>
    <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="0dp" android:topLeftRadius="5dp" android:topRightRadius="0dp" />
    <solid android:color="@color/blue" />
    <stroke android:width="1dp" android:color="@color/blue" />
  </shape>
  </item>
  <item android:state_pressed="true"><shape>
    <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="0dp" android:topLeftRadius="5dp" android:topRightRadius="0dp" />
    <solid android:color="@color/whites" />
    <stroke android:width="1dp" android:color="@color/whites" />
  </shape>
  </item>
  <item><shape>
    <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="0dp" android:topLeftRadius="5dp" android:topRightRadius="0dp" />
    <solid android:color="@color/whites" />
    <stroke android:width="1dp" android:color="@color/blue" />
  </shape>
  </item>
</selector>

2.2在drawable文件夹中新建一个文件:qq_contact_all.xml,这个是右边按钮的背景样式xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_enabled="false"><shape>
    <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="5dp" android:topLeftRadius="0dp" android:topRightRadius="5dp" />
    <solid android:color="@color/blue" />
    <stroke android:width="1dp" android:color="@color/blue" />
  </shape>
  </item>
  <item android:state_pressed="true"><shape>
    <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="5dp" android:topLeftRadius="0dp" android:topRightRadius="5dp" />
    <solid android:color="@color/blue" />
    <stroke android:width="1dp" android:color="@color/blue" />
  </shape>
  </item>
  <item><shape>
    <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="5dp" android:topLeftRadius="0dp" android:topRightRadius="5dp" />
    <solid android:color="@color/whites" />
    <stroke android:width="1dp" android:color="@color/blue" />
  </shape>
  </item>
</selector>

3.在drawable文件夹中新建一个文件:qq_constact_font.xml,这个是两个按钮的文字样式xml,不选中为白色,选中为蓝色

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
  <item android:state_pressed="true" android:color="@color/whites"/>
  <item android:state_enabled="false" android:color="@color/whites"/>
  <item android:color="@color/blue"/>
</selector>

(3)在MainActivity中设置按钮的选中情况,并且在fragmentManager中调用fragment

public class MainActivity extends Activity implements View.OnClickListener {
  //参考网址:https://blog.csdn.net/u010585448/article/details/48543883
  private Button title_left_btn , title_right_btn;
  /**
   * Fragment管理器
   */
  private android.app.FragmentManager mFragmentManager;
  private FragmentTransaction mTransaction;
  /**
   * 两个Fragment
   */
  private LeftFragment mLFragment ;
  private RightFragment mRFragment;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initView();
  }
  private void initView() {
    // TODO Auto-generated method stub
    title_left_btn = (Button)findViewById(R.id.constact_group);
    title_right_btn = (Button)findViewById(R.id.constact_all);
    title_left_btn.setOnClickListener(this);
    title_left_btn.performClick();//模拟点击事件,使左边按钮被点击
    mFragmentManager = getFragmentManager();
    mTransaction = mFragmentManager.beginTransaction();
    mLFragment = new LeftFragment();
    mTransaction.replace(R.id.id_content, mLFragment);
    mTransaction.commit();
    title_right_btn.setOnClickListener(this);
  }
  @Override
  public void onClick(View v) {
    // TODO Auto-generated method stub
    switch (v.getId()) {
      case R.id.constact_group:
        if(title_left_btn.isEnabled()){
          title_left_btn.setEnabled(false);
          title_right_btn.setEnabled(true);
        }
        mFragmentManager = getFragmentManager();
        mTransaction = mFragmentManager.beginTransaction();
        if(mLFragment == null){
          mLFragment = new LeftFragment();
        }
        mTransaction.replace(R.id.id_content, mLFragment);
        mTransaction.commit();
        break;
      case R.id.constact_all:
        if(title_right_btn.isEnabled()){
          title_left_btn.setEnabled(true);
          title_right_btn.setEnabled(false);
        }
        mFragmentManager = getFragmentManager();
        mTransaction = mFragmentManager.beginTransaction();
        if(mRFragment == null){
          mRFragment = new RightFragment();
        }
        mTransaction.replace(R.id.id_content, mRFragment);
        mTransaction.commit();
        break;
    }
  }
}

最后,简单贴一下fragment吧

public class LeftFragment extends android.app.Fragment {
  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
               Bundle savedInstanceState) {
    return inflater.inflate(R.layout.left_fragment, container , false);
  }
}

实现效果图:

总结

以上所述是小编给大家介绍的Android仿qq顶部消息栏效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

相关文章

  • Android实现关机后数据不会丢失问题

    Android实现关机后数据不会丢失问题

    这篇文章主要介绍了Android实现关机后数据不会丢失问题,本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2019-10-10
  • TextView实现图文混合编排的方法

    TextView实现图文混合编排的方法

    这篇文章主要为大家详细介绍了TextView实现图文混合编排的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-08-08
  • 详解android系统的定制

    详解android系统的定制

    这篇内容给大家分享了关于android系统的定制的一些步骤和基本知识点,有兴趣的朋友参考学习下。
    2018-06-06
  • Flutter源码分析之自定义控件(RenderBox)指南

    Flutter源码分析之自定义控件(RenderBox)指南

    写了两天的flutter,发现控件样式很多,flutter资源很少,本文在于实用性,可以减少页面代码,下面这篇文章主要介绍了Flutter源码分析之自定义控件(RenderBox)的相关资料,需要的朋友可以参考下
    2021-08-08
  • 一篇文章揭开Kotlin协程的神秘面纱

    一篇文章揭开Kotlin协程的神秘面纱

    最近看了下Kotlin的协程,觉得挺好的,写篇文章总结总结,所以下面这篇文章主要给大家介绍了关于Kotlin协程的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
    2018-08-08
  • android利用ContentResolver访问者获取手机联系人信息

    android利用ContentResolver访问者获取手机联系人信息

    这篇文章主要介绍了android利用ContentResolver访问者获取手机联系人信息,非常具有实用价值,需要的朋友可以参考下。
    2017-02-02
  • Android中Activity的四种启动模式和onNewIntent()

    Android中Activity的四种启动模式和onNewIntent()

    android 中activity的启动模式分为四种,(standard、singleTop、singTask、singleInstance),本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友参考下吧
    2018-08-08
  • Android进阶NestedScroll嵌套滑动机制实现吸顶效果详解

    Android进阶NestedScroll嵌套滑动机制实现吸顶效果详解

    这篇文章主要为大家介绍了Android进阶NestedScroll嵌套滑动机制实现吸顶效果详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-01-01
  • 理解Android系统Binder机制

    理解Android系统Binder机制

    这篇文章主要为大家介绍了Android系统Binder机制,帮助大家理解Binder机制,感兴趣的朋友可以参考一下
    2016-05-05
  • Android 开发中根据搜索内容实现TextView中的文字部分加粗

    Android 开发中根据搜索内容实现TextView中的文字部分加粗

    最近遇到一个需求,需要做一个搜索功能。搜索的内容需要加粗显示。实现方法很简单,下面通过本文给大家分享Android 开发中根据搜索内容实现TextView中的文字部分加粗样式,非常不错,需要的朋友参考下
    2017-03-03

最新评论