Android用PopupWindow实现新浪微博的分组信息实例

最近看到新浪微博顶部栏的微博分组效果很炫,从网上查了一些资料明白原来是用PopupWindow实现的,今天自己也写了一个例子实现了这种效果,希望对大家有帮助。

PopupWindow就是弹出窗口的意思,类似windows下面的开始按钮。PopupWindow可以实现浮层效果,而且可以自定义显示位置,出现和退出时的动画.

效果如下:

实现思路:

在一个PopupWindow里放一个ListView,从而来达到分组信息的实现!

具体主要实现代码:
group_list.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_margin="0.0px"
  android:background="@drawable/group_bg"
  android:orientation="vertical"
  android:paddingLeft="0.0sp"
  android:paddingRight="0.0sp" > 

  <TextView
    android:id="@+id/groupAll"
    style="@style/grouplist_item_textview"
    android:layout_width="fill_parent"
    android:layout_height="@dimen/group_item_height"
    android:background="@drawable/grouplist_fixed_item_bg"
    android:gravity="center"
    android:text="全部" /> 

  <ImageView
    android:id="@+id/iv_group_list_bg_divider"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="0.0px"
    android:background="@drawable/group_divider"
    android:padding="0.0px" /> 

  <ListView
    android:id="@+id/lvGroup"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="0.0"
    android:cacheColorHint="#00000000"
    android:divider="@drawable/group_divider"
    android:dividerHeight="2.0px"
    android:drawSelectorOnTop="true"
    android:fadingEdgeLength="0.0sp"
    android:listSelector="@drawable/grouplist_item_bg" /> 

</LinearLayout>

group_item_view.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="@dimen/group_item_height"
  android:orientation="vertical" > 

  <TextView
    android:id="@+id/groupItem"
    style="@style/grouplist_item_textview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center" /> 

</LinearLayout>

Activity中的代码:

package com.jiahui.popwindow; 

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

import com.jiahui.adapter.GroupAdapter; 

import android.app.Activity;
import android.content.Context;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.WindowManager;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.PopupWindow;
import android.widget.TextView;
import android.widget.Toast; 

public class PoupWindowDemoActivity extends Activity { 

  private PopupWindow popupWindow; 

  private ListView lv_group; 

  private View view; 

  private View top_title; 

  private TextView tvtitle; 

  private List<String> groups; 

  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main); 

    top_title = this.findViewById(R.id.top_title); 

    tvtitle = (TextView) top_title.findViewById(R.id.tvtitle); 

    tvtitle.setText("做一个低调的码农"); 

    tvtitle.setOnClickListener(new View.OnClickListener() { 

      @Override
      public void onClick(View v) {
        showWindow(v);
      }
    }); 

  } 

  /**
   * 显示
   *
   * @param parent
   */
  private void showWindow(View parent) { 

    if (popupWindow == null) {
      LayoutInflater layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); 

      view = layoutInflater.inflate(R.layout.group_list, null); 

      lv_group = (ListView) view.findViewById(R.id.lvGroup);
      // 加载数据
      groups = new ArrayList<String>();
      groups.add("我的微博");
      groups.add("好友");
      groups.add("亲人");
      groups.add("陌生人"); 

      GroupAdapter groupAdapter = new GroupAdapter(this, groups);
      lv_group.setAdapter(groupAdapter);
      // 创建一个PopuWidow对象
      popupWindow = new PopupWindow(view, 200, 250);
    } 

    // 使其聚集
    popupWindow.setFocusable(true);
    // 设置允许在外点击消失
    popupWindow.setOutsideTouchable(true); 

    // 这个是为了点击“返回Back”也能使其消失,并且并不会影响你的背景
    popupWindow.setBackgroundDrawable(new BitmapDrawable());
    WindowManager windowManager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
    // 显示的位置为:屏幕的宽度的一半-PopupWindow的高度的一半
    int xPos = windowManager.getDefaultDisplay().getWidth() / 2
        - popupWindow.getWidth() / 2; 

    Log.i("coder", "windowManager.getDefaultDisplay().getWidth()/2:"
        + windowManager.getDefaultDisplay().getWidth() / 2);
    //
    Log.i("coder", "popupWindow.getWidth()/2:" + popupWindow.getWidth() / 2); 

    Log.i("coder", "xPos:" + xPos); 

    popupWindow.showAsDropDown(parent, xPos, 0); 

    lv_group.setOnItemClickListener(new OnItemClickListener() { 

      @Override
      public void onItemClick(AdapterView<?> adapterView, View view,
          int position, long id) { 

        Toast.makeText(PoupWindowDemoActivity.this,
            "groups.get(position)" + groups.get(position), 1000)
            .show(); 

        if (popupWindow != null) {
          popupWindow.dismiss();
        }
      }
    });
  }
}

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

(0)

相关推荐

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

    本文实例为大家分享了Android仿新浪微博分页管理界面的具体代码,供大家参考,具体内容如下 多个activity分页管理,为了方便获取上下文,采用继承TabActivity的传统方法. 大致思路:使用RadioGroup点击触发不同的选卡项,选卡项绑定不同的activiity,进而进行分页管理.详解见注解. /** * 主Activity * 通过点击RadioGroup下的RadioButton来切换不同界面 * Created by D&LL on 2016/7/20. */ public

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

    oauth2.0授权界面,大致流程图: 前提准备: 在新浪开放平台申请appkey和appsecret:http://open.weibo.com/. 熟悉oauth2.0协议,相关知识:http://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html OAuth2的access_token接口:http://open.weibo.com/wiki/OAuth2/access_token 代码详解 大致思路如下:建立一个webview加载授权界面,授权回

  • Android仿新浪微博发布微博界面设计(5)

    本教程为大家分享了Android发布微博.添加表情等功能的具体代码,供大家参考,具体内容如下 发布一条新微博接口:http://open.weibo.com/wiki/2/statuses/update 上传图片并发布一条新微博接口:http://open.weibo.com/wiki/2/statuses/upload 1.根据有没有图片来选择相应的接口. 2.根据输入框的改变判断文字数. 3.创建一个girlview显示发送的图片,最最多9张,此处由于请求参数的的原因,最多上传一张图片,选择

  • Android仿新浪微博/QQ空间滑动自动播放视频功能

    先来看看效果图 关键代码 1.监听滚动事件 首先要给listview添加setOnScrollListener监听,注意这个监听在recyclerView上是addOnScrollListener,也就是说下面代码同时支持recyclerView. public int firstVisible=0,visibleCount=0, totalCount=0; videoList.setOnScrollListener(new AbsListView.OnScrollListener() { @O

  • Android集成新浪微博第三方登录的方法

    本文实例讲述了Android集成新浪微博第三方登录的方法.分享给大家供大家参考.具体实现方法如下: 1.下载微博的sdk ,导入微博的jar包两个 android-support-v4.jar和weibosdkcore.jar两个包 2.把新浪微博中的demo_src中SDK中的com,导入到项目中 3.用demo中的constants,主要是参数设置,将里面的参数改成自己的参数. 4.编写代码,主要步骤如下: 复制代码 代码如下: // 初始化微博对象 mWeiboAuth = new Wei

  • Android仿新浪微博、QQ空间等帖子显示(2)

    一.介绍 这是新浪微博的一个帖子,刚好包括了话题.表情.@好友三种显示.显示方法上篇已经阐述了,就是使用SpannableString.这篇主要介绍显示这种帖子的解析工具类. 二.实现 1.字符串表示和对应正则表达式 话题用##号括起来 表情用[]表示 @好友昵称 借助正则匹配来解析帖子信息. 话题 -> #[^#]+# 表情 -> [[^]]+] @好友 -> @好友昵称 2.写一个通用方法,对spanableString进行正则判断,如果符合要求,则将内容变色 private sta

  • Android仿新浪微博个人信息界面及其他效果

    本教程为大家分享了Android微博个人信息界面设计代码,供大家参考,具体内容如下 根据用户ID获取用户信息接口: http://open.weibo.com/wiki/2/users/show 如果你已经实现前面的功能那个这个人信息界面便是小菜一碟,此处不作叙述. 补充 1.时间处理类: 处理微博发出时间距现在时刻的时间.应该是比较容易理解的. /** * 时间处理类 */ public class DateUtils { public String getInterval(String cr

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

    本文为大家分享了Android模仿新浪微博启动界面&登陆界面的具体实现代码,供大家参考,具体内容如下 启动界面 主要有两个功能: 1.加载启动动画 2.判断网络,有者直接进入登陆界面,否则去设置网络 代码较简单,主要采用AlphaAnimation()方法和动画监听器,使一张图片产生渐变动画.在动画启动的时候判断网络,动画结束时完成判断并进入登陆界面. /** * Created by D&LL on 2016/5/25. * 初始页面加载界面 */ public class Splash

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

    自定义PullToRefreshListView继承ListView,在ListView头部添加一个下拉的头部布局.跟ListView用法完全一致. 该自定义Listview代码详解具体可参考: http://www.jb51.net/article/97845.htm 此处详细介绍Adapter的详细代码. 1.首先给Adapter绑定ListView布局. 2.其次创建一个层次对应组件的类,将对应的组件和对象进行关联,提高效率. 3.然后跟陆获得的图片路径异步下载图片,由于不知道该微博图片的

  • Android仿新浪微博、QQ空间等帖子显示(1)

    TextView通常用来显示普通文本,但是有时候需要对其中某些文本进行样式.事件方面的设置.Android系统通过SpannableString类来对指定文本进行相关处理,实际应用中用的比较多的地方比如聊天时显示表情啊,朋友圈或社区中话题的显示.@好友显示和点击等等,关键字显示不同颜色-- 1.BackgroundColorSpan 背景色 SpannableString spanText = new SpannableString("BackgroundColorSpan"); sp

随机推荐