Android仿qq顶部消息栏效果

所属分类: 软件编程 / Android 阅读数: 40
收藏 0 赞 0 分享

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异常 java.lang.IllegalStateException解决方法

这篇文章主要介绍了Android异常 java.lang.IllegalStateException解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android中Split()字符串分割特殊用法案例详解

本文通过案例的形式给大家详细介绍了android中split()字符串分割特殊用法的知识,非常不错具有参考借鉴价值,感兴趣的朋友参考下
收藏 0 赞 0 分享

Android仿新浪微博启动界面或登陆界面(1)

这篇文章主要为大家详细介绍了Android仿新浪微博启动界面或登陆界面的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android仿新浪微博oauth2.0授权界面实现代码(2)

这篇文章主要为大家详细介绍了Android仿新浪微博oauth2.0授权界面实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android开发中使用sqlite实现新闻收藏和取消收藏的功能

本篇文章主要介绍了sqlite实现新闻收藏和取消收藏功能,主要涉及到oracle数据库方面的内容,对于Android开发sqlite实现收藏和取消功能感兴趣的朋友可以参考下本文
收藏 0 赞 0 分享

Android仿新浪微博分页管理界面(3)

这篇文章主要为大家详细介绍了Android仿新浪微博分页管理界面,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android UI自定义ListView实现下拉刷新和加载更多效果

这篇文章主要介绍了Android UI自定义ListView实现下拉刷新和加载更多效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android—基于微信开放平台v3SDK开发(微信支付填坑)

这篇文章主要介绍了Android—基于微信开放平台v3SDK开发(微信支付填坑),具有一定的参考价值,有需要的可以了解一下。
收藏 0 赞 0 分享

Android仿新浪微博自定义ListView下拉刷新(4)

这篇文章主要为大家详细介绍了Android仿新浪微博自定义ListView下拉刷新,重点介绍了Adapter的详细代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android控件之使用ListView实现时间轴效果

这篇文章主要介绍了Android基础控件之使用ListView实现时间轴效果的相关资料,本文是以查看物流信息为例,给大家介绍了listview时间轴的实现代码,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多