Android高手进阶教程(十)之----Android PopupWindow的使用

01.package com.android.tutor;
02.import android.app.Activity;
03.import android.content.Context;
04.import android.os.Bundle;
05.import android.view.Gravity;
06.import android.view.LayoutInflater;
07.import android.view.View;
08.import android.view.View.OnClickListener;
09.import android.view.ViewGroup.LayoutParams;
10.import android.widget.Button;
11.import android.widget.PopupWindow;
12.public class PopupWindowDemo extends Activity implements OnClickListener{
13. private Button btn;
14.
15. public void onCreate(Bundle savedInstanceState) {
16. super.onCreate(savedInstanceState);
17. setContentView(R.layout.main);
18.
19. btn = (Button)findViewById(R.id.btn);
20. btn.setOnClickListener(this);
21. }
22. @Override
23. public void onClick(View v) {
24. Context mContext = PopupWindowDemo.this;
25. if (v.getId() == R.id.btn) {
26. LayoutInflater mLayoutInflater = (LayoutInflater) mContext
27. .getSystemService(LAYOUT_INFLATER_SERVICE);
28. View music_popunwindwow = mLayoutInflater.inflate(
29. R.layout.music_popwindow, null);
30. PopupWindow mPopupWindow = new PopupWindow(music_popunwindwow, LayoutParams.FILL_PARENT,
31. LayoutParams.WRAP_CONTENT);
32.
33. mPopupWindow.showAtLocation(findViewById(R.id.main), Gravity.RIGHT|Gravity.BOTTOM, 0, 0);
34. }
35. }
36.}

需要强调的是这里PopupWindow必须有某个事件触发才会显示出来,不然总会抱错,不信大家可以试试!

随着这个问题的出现,就会同学问了,那么我想初始化让PopupWindow显示出来,那怎么办了,不去寄托于其他点击事件,

在这里我用了定时器Timer来实现这样的效果,当然这里就要用到Handler了


01.package com.android.tutor;
02.import java.util.Timer;
03.import java.util.TimerTask;
04.import android.app.Activity;
05.import android.content.Context;
06.import android.os.Bundle;
07.import android.os.Handler;
08.import android.os.Message;
09.import android.view.Gravity;
10.import android.view.LayoutInflater;
11.import android.view.View;
12.import android.view.ViewGroup.LayoutParams;
13.import android.widget.PopupWindow;
14.public class PopupWindowDemo extends Activity{
15. private Handler mHandler = new Handler(){
16.
17. public void handleMessage(Message msg) {
18. switch (msg.what) {
19. case 1:
20. showPopupWindow();
21. break;
22. }
23. };
24. };
25.
26. public void onCreate(Bundle savedInstanceState) {
27. super.onCreate(savedInstanceState);
28. setContentView(R.layout.main);
29.
30. //create the timer
31. Timer timer = new Timer();
32. timer.schedule(new initPopupWindow(), 100);
33. }
34.
35. private class initPopupWindow extends TimerTask{
36. @Override
37. public void run() {
38.
39. Message message = new Message();
40. message.what = 1;
41. mHandler.sendMessage(message);
42.
43. }
44. }
45.
46.
47. public void showPopupWindow() {
48. Context mContext = PopupWindowDemo.this;
49. LayoutInflater mLayoutInflater = (LayoutInflater) mContext
50. .getSystemService(LAYOUT_INFLATER_SERVICE);
51. View music_popunwindwow = mLayoutInflater.inflate(
52. R.layout.music_popwindow, null);
53. PopupWindow mPopupWindow = new PopupWindow(music_popunwindwow,
54. LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
55. mPopupWindow.showAtLocation(findViewById(R.id.main), Gravity.CENTER, 0, 0);
56. }
57.}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Welcome to Mr Wei's Blog!!"
/>
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show PopupWindow"
/>
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hide PopupWindow"
/>
</LinearLayout>


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Android_Tutor/archive/2010/05/10/5576533.aspx
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
PopupWindow是一种可以在当前界面上方显示的弹出窗口,通常用于显示一些额外的信息或者提供用户操作的选项。在Android中,可以使用PopupWindow类来创建弹出窗口。 以下是使用PopupWindow的一般步骤: 1. 创建PopupWindow对象:使用PopupWindow的构造函数创建一个PopupWindow对象。 2. 设置PopupWindow的属性:设置PopupWindow的大小、位置、背景等属性。 3. 设置PopupWindow的内容视图:使用setContentView方法设置PopupWindow的内容视图,这可以是一个布局文件或者一个View对象。 4. 显示PopupWindow使用showAsDropDown、showAtLocation等方法显示PopupWindow。 5. 处理PopupWindow的事件:设置PopupWindow的监听器,处理PopupWindow的各种事件。 以下是一个简单的例子,展示如何使用PopupWindow: ``` // 创建PopupWindow对象 PopupWindow popupWindow = new PopupWindow(context); // 设置PopupWindow的属性 popupWindow.setWidth(WindowManager.LayoutParams.WRAP_CONTENT); popupWindow.setHeight(WindowManager.LayoutParams.WRAP_CONTENT); popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); popupWindow.setFocusable(true); // 设置PopupWindow的内容视图 View contentView = LayoutInflater.from(context).inflate(R.layout.popup_layout, null); popupWindow.setContentView(contentView); // 显示PopupWindow popupWindow.showAsDropDown(anchorView); // 处理PopupWindow的事件 contentView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 处理点击事件 popupWindow.dismiss(); } }); ``` 在上面的代码中,我们创建了一个PopupWindow对象,并设置了宽高、背景等属性。然后,我们使用LayoutInflater加载了一个布局文件作为PopupWindow的内容视图,并使用setContentView方法设置了PopupWindow的内容视图。最后,我们使用showAsDropDown方法显示了PopupWindow,并设置了一个点击事件处理器来处理用户点击PopupWindow的事件。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值