ViewPage和Fragment上 实现BadgeView消息提醒(仿旧微信)

先上图:

这里只是使用了viewpage 和 Fragment,没有用GitHob上viewpagerindicator,而是自己写了个指示器,使用了badgeView显示消息提醒。

首先, 是上面的titleBar  没什么好说的  带过。。。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:background="@drawable/top1_bg" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true" >

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="3dp"
            android:background="@android:color/transparent"
            android:src="@drawable/actionbar_icon" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="3dp"
            android:text="微信"
            android:textColor="#d3d3d3" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        >
         <ImageButton
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_marginLeft="3dp"
            android:scaleType="fitXY"
            android:background="@android:color/transparent"
            android:src="@drawable/actionbar_search_icon" />
         <ImageButton
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_marginLeft="3dp"
            android:scaleType="fitXY"
            android:background="@android:color/transparent"
            android:src="@drawable/actionbar_add_icon" />
         <ImageButton
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_marginLeft="3dp"
            android:scaleType="fitXY"
            android:background="@android:color/transparent"
            android:src="@drawable/actionbar_more_icon" />
    </LinearLayout>

</RelativeLayout>

然后是三个Tab 和 一个 指示器  带过。。。。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#eee"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="40dp"
        android:baselineAligned="true"
        android:gravity="center_vertical"
        android:orientation="horizontal" >

        <LinearLayout
            android:id="@+id/chatLayout"
            android:orientation="horizontal"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center" >

            <TextView
                android:id="@+id/chat"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="聊天"
                android:textColor="#3399ff"
                android:textSize="17sp" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center" >

            <TextView
                android:id="@+id/find"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="发现"
                android:textSize="17sp" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center" >

            <TextView
                android:id="@+id/contact"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="通信录"
                android:textSize="17sp" />
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="5dp" >

        <ImageView
            android:id="@+id/imgBar"
            android:layout_width="100dp"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@drawable/tabline" />
    </LinearLayout>

</LinearLayout>

主布局,带过。。。。

<LinearLayout 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"
    android:orientation="vertical"
    tools:context="com.example.viewpage_badgeview_weixin.MainActivity" >

    <include layout="@layout/top_one" />

    <include layout="@layout/top_tow" />

    <android.support.v4.view.ViewPager
        android:id="@+id/viewPage"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        />

</LinearLayout>

三个Fragment都一样,贴一个

package com.example.viewpage_badgeview_weixin;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class TabFragmentChat extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.chat, container, false);
    }

}

使用badgeView  要先从GitHob上下载library

地址:https://github.com/stefanjauker/BadgeView

package com.example.viewpage_badgeview_weixin;

import java.util.ArrayList;
import java.util.List;

import com.example.viewpage_badgeview_weixin.R.id;
import com.jauker.widget.BadgeView;

import android.content.Context;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.DisplayMetrics;
import android.view.Display;
import android.view.Menu;
import android.view.MenuItem;
import android.view.ViewGroup.LayoutParams;
import android.view.Window;
import android.view.WindowManager;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends FragmentActivity {

    private ViewPager viewPage;
    private List<Fragment> list = new ArrayList<Fragment>();
    private FragmentPagerAdapter adapter;

    private TextView mChat;
    private TextView mFind;
    private TextView mContact;
    private ImageView imgBar;
    private LinearLayout chatLayout;

    private int lineWidth;
    private int currentPageState;
    private BadgeView badge;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);

        initView();
        initLine();
        initText();
    }
//设置指示器的长度
    private void initLine() {
        imgBar = (ImageView) findViewById(id.imgBar);
        DisplayMetrics outMetrics = new DisplayMetrics();
        Display display = getWindowManager().getDefaultDisplay();
        display.getMetrics(outMetrics);
        lineWidth = outMetrics.widthPixels / 3;
        LayoutParams params = imgBar.getLayoutParams();
        params.width = lineWidth;
        imgBar.setLayoutParams(params);

    }

    private void initText() {
        mChat = (TextView) findViewById(id.chat);
        mFind = (TextView) findViewById(id.find);
        mContact = (TextView) findViewById(id.contact);
//改变文字颜色
        viewPage.setOnPageChangeListener(new OnPageChangeListener() {
            @Override
            public void onPageSelected(int arg0) {
                resetColor();
                switch (arg0) {
                case 0:
                    if (badge != null) {
                        chatLayout.removeView(badge);
                    }
                    badge = new BadgeView(MainActivity.this);
                    badge.setBadgeCount(7);
                    chatLayout.addView(badge);

                    mChat.setTextColor(0xff3399ff);
                    // imgBar.setTranslationX(0);
                    break;
                case 1:
                    mFind.setTextColor(0xff3399ff);

                    // imgBar.setTranslationX(lineWidth);

                    break;
                case 2:
                    mContact.setTextColor(0xff3399ff);
                    // imgBar.setTranslationX(lineWidth * 2);
                    break;
                }
                currentPageState = arg0;
            }
//滚动指示器
            public void onPageScrolled(int position, float offset, int pixels) {
                LinearLayout.LayoutParams params = (android.widget.LinearLayout.LayoutParams) imgBar
                        .getLayoutParams();
                // 1--2 2--1
                if (currentPageState == 0 && position == 0) {
                    params.leftMargin = (int) (currentPageState * lineWidth + offset
                            * lineWidth);
                } else if (currentPageState == 1 && position == 0) {
                    params.leftMargin = (int) (currentPageState * lineWidth + (offset - 1)
                            * lineWidth);
                }
                // 2---3 3---2
                if (currentPageState == 1 && position == 1) {
                    params.leftMargin = (int) (currentPageState * lineWidth + offset
                            * lineWidth);
                } else if (currentPageState == 2 && position == 1) {
                    params.leftMargin = (int) (currentPageState * lineWidth + (offset - 1)
                            * lineWidth);
                }
                imgBar.setLayoutParams(params);
            }

            public void onPageScrollStateChanged(int arg0) {
            }
        });
    }
//实例化视图
    private void initView() {
        viewPage = (ViewPager) findViewById(id.viewPage);
        chatLayout = (LinearLayout) findViewById(id.chatLayout);

        TabFragmentChat chat = new TabFragmentChat();
        TabFragmentFind find = new TabFragmentFind();
        TabFragmentContact contact = new TabFragmentContact();

        list.add(chat);
        list.add(find);
        list.add(contact);
//实例化FragmentPagerAdapter
        adapter = new FragmentPagerAdapter(getSupportFragmentManager()) {
            public int getCount() {
                return list.size();
            }

            public Fragment getItem(int arg0) {
                return list.get(arg0);
            }
        };
//添加adapter
        viewPage.setAdapter(adapter);

    }
//重置文字颜色
    protected void resetColor() {
        mChat.setTextColor(Color.BLACK);
        mFind.setTextColor(Color.BLACK);
        mContact.setTextColor(Color.BLACK);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

上面大致实现过程:

1、先实例化view视图,new出来三个fragment装入list中

  viewpage设置adapter  这里使用的是FragmentPageAdapter

2、viewpage使用 OnPageChangeListener 监听器 改变 文字颜色 和 指示器的滚动

  这里要说一下:  使用  // imgBar.setTranslationX(0); 也可以使指示器滚动,只是不能达到过度效果.

  所以使用 onPageScrolled(int position, float offset, int pixels) 方法,它提供一个梯度值 offset

  利用梯度值来改变margin的值,从而达到缓慢滚动的效果

3、badgeView 消息提醒  badge = new BadgeView(MainActivity.this);

  拿别人的东西再用  没什讲的  很方便  感谢GitHob、、、、

时间: 2024-12-23 21:10:52

ViewPage和Fragment上 实现BadgeView消息提醒(仿旧微信)的相关文章

高仿微信5.2.1主界面及消息提醒

好久没更新博客了,最近在做公司的项目,这也算是我接触的第一个正式项目.通过项目的检验,发现自己积累了一年的知识还是远远不够,想要提高,好的方法是 :项目+书+视频+博客.最重要一点:勤动手.最近发现了慕课网的视频,居然都是高清无码免费的!而且满满的干货!我用业余时间跟着视频中大神的讲解学习了不少知识,下面就将这些小demo与大家分享,当然,我做了一些优化,代码与视频中有些出入,但功能可以完全实现. 这是一个模仿5.2.1版本的显示界面,如下图所示: 功能及实现思路简介 主要功能很简单: 1.上面

android自定义tabbar,并带badgeview消息提示

最早的时候,我用的tab都是在屏幕底端的,后来慢慢的流行在屏幕顶端了,按照用户体验来说,顶部确实比底部好,不仅可以防止按到返回键或者Home等引起误操作,而且tab标题在头顶很显眼很醒目. 一开始朋友推荐使用viewpageindicator,这个可以在github上有例子,大家如果没什么特殊需求,基本可以满足要求.根据项目要求我就使用了viewpageindicator,后来项目要求有消息提示,就像ios的badge一样,因此就对viewpageindicator进行修改,改了之后,就出现了下

使用SignalR实现消息提醒

Asp.net SignalR是微软为实现实时通信的一个类库.一般情况下,SignalR会使用JavaScript的长轮询(long polling)的方式来实现客户端和服务器通信,随着Html5中WebSockets出现,SignalR也支持WebSockets通信.另外SignalR开发的程序不仅仅限制于宿主在IIS中,也可以宿主在任何应用程序,包括控制台,客户端程序和Windows服务等,另外还支持Mono,这意味着它可以实现跨平台部署在Linux环境下. SignalR内部有两类对象:

PHP实现RTX发送消息提醒

RTX是腾讯公司推出的企业级即时通信平台,大多数公司都在使用它,但是我们很多时候需要将自己系统或者产品的一些通知实时推送给RTX,这就需要用到RTX的服务端SDK,建议先去看看RTX的SDK开发文档(客户端,服务器),我们先看看功能效果:                   当然,现在很多公司都已经在RTX的基础上升级成了企业微信,没关系,这个API同样可以使用,还是同样的接口,只是展示效果不一样而已: 下面是用PHP实现RTX发送消息提醒: 1.首先在服务器端安装RTX的服务端和客户端,再安装

用 mongodb 储存多态消息/提醒类数据(转)

原文:http://codecampo.com/topics/66 前天看到 javaeye 计划采用mongoDB实现网站全站消息系统,很有同感,mongodb 很适合储存消息类数据.之前讨论了如何构建一个微博型广播,这次讨论一下怎么储存消息/提醒类数据. 下面的内容不涉及关于海量数据储存的问题,只讨论数据模式. 1. 需求 消息/提醒类数据有不少例子,比如豆瓣的好友广播(我说.电影/书籍已读状态.网址推荐等),Twitter 的推信息 Tweet,SNS 的好友状态. 这类信息的一个特点是模

Android实例-设置消息提醒(XE8+小米2)

结果: 1.二个按钮可以新建消息提醒,最小化也是新建消息提醒. 2.程序必须最小化后才能点击消息提醒Label2才会有反映. 实例代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, 7 FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialog

css实现移动端消息提醒按钮

1.利用css实现移动端消息提醒按钮,页面效果如下: 2.代码实现思路和关键点分析: 代码的结构如下图所示,一共有4个提醒模块,每个模块都用li标签包裹起来,li标签里设置两个div,左边的div是文案,右边的div用于包裹按钮. css样式一看就懂,就不啰嗦了.本文的重点是按钮效果的实现. 2.1 如上图,我们用一个class为“.setting_btn”的div 绘制椭圆,设置背景色.1个像素的补白.以此让中间白色的圆与外框看起来有1px的间距. 用class为“.setting_circl

ASP.NET SignalR 与LayIM配合,轻松实现网站客服聊天室(五) 补充:历史记录 和 消息提醒

有开发者提问怎么做历史记录功能和即使不打开聊天窗口有消息提醒功能.简单抽时间写了点代码.不过只是基本思路,具体细节没有实现. 正如前几篇博客中提到的,读取历史记录什么时候读取呢?按照常理,应该是打开聊天窗口的时候加载历史记录,当然也可以选择异步加载好,然后打开哪个窗口就加载哪部分的记录.当然我们并不知道用户会打开哪个窗口,所以,我还是建议,当用户选择人聊天的时候就读取历史记录.那么之前的功能已经做好了.我们需要充分利用  ctoc  方法.ctoc是什么?不明白的就看看本系列前几篇文章吧. 现在

[Asp.net 开发系列之SignalR篇]专题六:使用SignalR实现消息提醒

一.引言 前面一篇文章我介绍了如何使用SignalR实现图片的传输,然后对于即时通讯应用来说,消息提醒是必不可少的.现在很多网站的都有新消息的提醒功能.自然对于SignalR系列也少不了这个功能的实现了.在这篇文章中将介绍如何使用SignalR+iNotify库来实现新消息的声音和弹框提醒. 二.消息提醒的实现思路 消息提醒也就是当客户有新消息来时,在客户端的右下角进行弹框提醒.要实现这个功能的思路是: SignalR服务端推送消息到客户端的实现方式为调用客户端的receiveMessage方法