点击ListView的每一个item,将弹出窗口显示item详情
主要代码:
private void openPopupwin() {
LayoutInflater mLayoutInflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
ViewGroup rootView = (ViewGroup) mLayoutInflater.inflate(R.layout.person_info_pop, null, true);
TextView person_popup_name = (TextView)rootView.findViewById(R.id.person_popup_name);
TextView person_popup_realName = (TextView)rootView.findViewById(R.id.person_popup_realName);
TextView person_popup_age = (TextView)rootView.findViewById(R.id.person_popup_age);
TextView person_popup_birthday = (TextView)rootView.findViewById(R.id.person_popup_birthday);
TextView person_popup_phone = (TextView)rootView.findViewById(R.id.person_popup_phone);
TextView person_popup_deptId = (TextView)rootView.findViewById(R.id.person_popup_deptId);
Button btn_popup_close = (Button)rootView.findViewById(R.id.btn_popup_close);
ImageView person_popup_head = (ImageView)rootView.findViewById(R.id.person_popup_head);
try {
person_popup_name.setText(selectedperson.getString("name"));
person_popup_realName.setText(selectedperson.getString("realName"));
person_popup_age.setText(selectedperson.getString("age"));
person_popup_birthday.setText(selectedperson.getString("birthday"));
person_popup_phone.setText("13880012450");//还未添加字段
person_popup_deptId.setText("产品事业部");
person_popup_head.setBackgroundDrawable(ImageUtil.geRoundDrawableFromUrl(HttpUtil.BASE_URL+selectedperson.getString("headPhotoPath"), 10));
} catch (JSONException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
popupWindow = new PopupWindow(rootView, LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT, true);
popupWindow.setBackgroundDrawable(new BitmapDrawable());
popupWindow.setAnimationStyle(R.style.PopupAnimation);
popupWindow.showAtLocation(root, Gravity.CENTER | Gravity.CENTER, 0, 0);
popupWindow.update();
btn_popup_close.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
popupWindow.dismiss();
}
});
}
弹出窗口布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:gravity="center"
android:layout_height="wrap_content" android:layout_gravity="center" android:padding="5.0dip" android:layout_margin="5.0dip"
android:background="@drawable/popup_corner">
<RelativeLayout android:id="@+id/popup_top_bar" android:layout_alignParentTop="true" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:text="用户详细信息" android:textColor="#760606" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="16.0sp" android:layout_alignParentLeft="true"/>
<Button android:id="@+id/btn_popup_close" android:background="@drawable/popup_close" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true"/>
</RelativeLayout>
<ImageView android:id="@+id/person_popup_head" android:scaleType="fitXY" android:layout_marginTop="5.0dip" android:layout_below="@id/popup_top_bar" android:layout_width="120.0dip" android:layout_height="120.0dip"/>
<TableLayout android:id="@+id/person_form" android:layout_marginLeft="2.0dip" android:layout_marginTop="5.0dip" android:layout_toRightOf="@id/person_popup_head" android:layout_below="@id/popup_top_bar" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="账号:"/>
<TextView android:id="@+id/person_popup_name" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</TableRow>
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="姓名:"/>
<TextView android:id="@+id/person_popup_realName" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</TableRow>
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="年龄:"/>
<TextView android:id="@+id/person_popup_age" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</TableRow>
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="生日:"/>
<TextView android:id="@+id/person_popup_birthday" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</TableRow>
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="电话号码:"/>
<TextView android:id="@+id/person_popup_phone" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:autoLink="phone"/>
</TableRow>
<TableRow >
<TextView android:layout_width="60.0dip" android:gravity="right" android:textColor="#074f92" android:layout_height="wrap_content" android:text="部门:"/>
<TextView android:id="@+id/person_popup_deptId" android:textColor="#074f92" android:layout_marginLeft="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
</RelativeLayout>
popup_enter.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale android:fromXScale="0.6" android:toXScale="1.0"
android:fromYScale="0.6" android:toYScale="1.0" android:pivotX="50%"
android:pivotY="50%" android:duration="1000" />
<alpha android:interpolator="@android:anim/decelerate_interpolator"
android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="1000" />
</set>
popup_exit.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale
android:fromXScale="1.0"
android:toXScale="0.5"
android:fromYScale="1.0"
android:toYScale="0.5"
android:pivotX="50%"
android:pivotY="50%"
android:duration="500" />
<alpha
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="1.0"
android:toAlpha="0.0"
android:duration="500" />
</set>
popup_corner.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient android:startColor="#cbeafe" android:endColor="#ffffff" android:angle="90" />
<!--
<stroke android:dashWidth="2dp" android:dashGap="2dp" android:width="2dp" android:color="#FF00ff00"/>-->
<!--描边-->
<corners android:bottomRightRadius="5dp" android:bottomLeftRadius="5dp" android:topLeftRadius="5dp" android:topRightRadius="5dp" />
<!--设置圆角-->
</shape>
- 大小: 54.8 KB
分享到:
相关推荐
在Android开发中,`PopupWindow`是一个非常实用的组件,它可以用来实现各种形式的弹出窗口,如下拉菜单、提示框等。本教程将详细讲解如何使用`PopupWindow`来创建一个以`ListView`形式展示的菜单。首先,我们需要...
本资料包"Android源码——PopupWindow实现弹出菜单.zip"主要聚焦于如何利用`PopupWindow`来创建自定义的弹出菜单。下面将详细介绍`PopupWindow`的基本概念、工作原理以及实现弹出菜单的关键步骤。 `PopupWindow` 是...
本资料"Android PopupWindow实现弹出菜单.zip"应该包含了如何利用PopupWindow在Android应用中构建弹出菜单的详细教程。 PopupWindow的核心特性在于它的灵活性和非侵入性,它不是一个独立的Activity,而是依附于某个...
本资料"Android之用PopupWindow实现弹出菜单.rar"将深入探讨如何利用PopupWindow创建弹出菜单。 1. **PopupWindow基本概念** PopupWindow是Android SDK提供的一种轻量级窗口,它可以在屏幕任意位置显示一个视图,...
本资料包"Android代码-之用PopupWindow实现弹出菜单.zip"显然是为了演示如何在Android应用中使用PopupWindow来构建一个弹出菜单。 首先,我们来理解PopupWindow的基本概念。PopupWindow是Android SDK提供的一种轻量...
`PopupWindow`是Android系统提供的一个轻量级窗口,它可以显示在屏幕上的任意位置,用于创建浮动、弹出式的UI组件。在本教程中,我们将深入探讨如何使用`PopupWindow`来构建一个以`ListView`形式展示的菜单。 首先...
这个压缩包“安卓Android源码——Android之用PopupWindow实现弹出菜单.zip”显然是为了演示如何使用`PopupWindow`来构建弹出菜单。现在,我们将深入探讨`PopupWindow`的使用及其背后的原理。 `PopupWindow` 是 ...
本资料"Android之用PopupWindow实现弹出菜单.zip"聚焦于如何利用PopupWindow来创建弹出菜单,以增强用户交互体验。 一、PopupWindow基础 1. PopupWindow概述:PopupWindow是Android提供的一个可以显示任意视图的类...
在"Android应用源码之之用PopupWindow实现弹出菜单"中,开发者可能包含了以下关键步骤: 1. 设计弹出菜单的布局文件,包含多个MenuItem的布局。 2. 在Activity或Fragment中初始化PopupWindow,加载布局文件作为内容...
本项目"安卓Android源码——用PopupWindow实现弹出菜单.zip"显然是一个演示如何使用`PopupWindow`来构建弹出菜单的实例。下面我们将深入探讨`PopupWindow`的关键知识点。 首先,`PopupWindow` 是 Android SDK 提供...
这个“Android应用源码之之用PopupWindow实现弹出菜单”的项目,显然是为了教授如何在毕业设计中运用PopupWindow来创建动态的用户交互界面。 首先,PopupWindow是Android SDK提供的一种轻量级窗口,它可以浮现在...
在这个场景中,我们要实现的是从屏幕底部弹出的PopupWindow,并带有滑动动画效果,类似于sharesdk的分享页面那种平滑的过渡。 首先,我们需要了解PopupWindow的基本用法。PopupWindow类提供了创建和显示自定义视图...
这个压缩包"安卓开发-Android之用PopupWindow实现弹出菜单.zip"显然是为了帮助开发者理解如何在Android应用中使用PopupWindow来创建弹出菜单。以下将详细介绍PopupWindow及其在实现弹出菜单中的应用。 首先,...
在Android开发中,`PopupWindow` 是一个非常实用的组件,它允许开发者创建浮动、可定制的窗口,常用于实现各种弹出式效果,如底部菜单、上下拉选择器等。本篇将深入探讨如何利用`PopupWindow`来实现一个自定义的底部...
这份"Android应用源码之之用PopupWindow实现弹出菜单.zip"的资源提供了关于如何利用PopupWindow创建自定义菜单的实例,非常适合初学者和有经验的开发者进行学习和参考。 首先,PopupWindow是Android SDK中的一个类...
本主题将深入探讨如何在.NET环境中实现弹出窗口选择值的功能,主要涉及Web Forms技术。 1. **Web Forms基础** Web Forms是.NET Framework中的一个关键组件,它允许开发者构建基于服务器的网页应用程序。Web Form...
这个压缩包“安卓Android源码——精典源码之之用PopupWindow实现弹出菜单.zip”显然是提供了一个使用`PopupWindow`创建弹出菜单的实例代码。下面我们将深入探讨`PopupWindow`的工作原理及其在实际应用中的使用方法。...
本资源"myandroidmenu_PopupWindow实现Android应用的弹出菜单.rar"提供了如何使用PopupWindow来创建自定义弹出菜单的实例。以下是对这个主题的详细讲解: 1. **PopupWindow简介** PopupWindow是Android SDK提供的...