Android 高級UI設計筆記19:PopupWindow使用詳解


1. PopupWindow使用

PopupWindow這個類用來實現一個彈出框,可以使用任意布局的View作為其內容,這個彈出框是懸浮在當前activity之上的。

 

2. PopupWindow使用的案例:

(1)首先是我們彈出框的布局設計,如下:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3  android:layout_width="match_parent"
 4  android:layout_height="wrap_content"
 5  android:layout_margin="5dp"
 6  android:orientation="vertical" >
 7 
 8     <!-- 這里的linearLayout加android:background=""這個屬性要謹慎,如果加了后,popwindow是不能半透明了的 -->
 9 
10     <Button 11         android:id="@+id/first"
12  android:layout_width="match_parent"
13  android:layout_height="wrap_content"
14  android:layout_marginBottom="5dp"
15  android:layout_marginLeft="10dp"
16  android:layout_marginRight="10dp"
17  android:layout_marginTop="5dp"
18  android:background="@android:color/holo_red_light"
19  android:text="第一個按鈕" />
20 
21     <Button 22         android:id="@+id/second"
23  android:layout_width="match_parent"
24  android:layout_height="wrap_content"
25  android:layout_marginBottom="5dp"
26  android:layout_marginLeft="10dp"
27  android:layout_marginRight="10dp"
28  android:background="@android:color/holo_red_light"
29  android:text="第二個按鈕" />
30 
31     <Button 32         android:id="@+id/third"
33  android:layout_width="match_parent"
34  android:layout_height="wrap_content"
35  android:layout_marginBottom="5dp"
36  android:layout_marginLeft="10dp"
37  android:layout_marginRight="10dp"
38  android:background="@android:color/holo_red_light"
39  android:text="第三個按鈕" />
40 
41 </LinearLayout>

布局效果圖,如下:

 

 

(2)主布局activity_main.xml只有一個按鈕,如下:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3  android:layout_width="match_parent"
 4  android:layout_height="wrap_content"
 5  android:layout_margin="5dp"
 6  android:orientation="vertical" >
 7 
 8  <Button  9      android:layout_width="match_parent"
10  android:layout_height="wrap_content"
11  android:id="@+id/start"
12  android:text="@string/click"/>
13 
14 </LinearLayout>

 

(3)首先當我們進入MainActivity(承載着activity_main.xml),當我們點擊按鈕,PopupWindow會從下往上彈出顯示;PopupWindow彈出來之后,當我們點擊PopupWindow之外的地方的時候,PopupWindow就會從上往下收縮隱藏

這里需要定義PopupWindow彈出和隱藏的兩個動畫,如下:

在res / 下新建一個文件夾anim,進而anim下新建兩個xml文件,如圖所示:

 

其中,pophidden_anim.xml,如下:

<?xml version="1.0" encoding="utf-8"?>

<!-- android<set>標簽代表一系列的幀動畫,可以在里面添加動畫效果 -->
<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <translate android:duration="2000" android:fromYDelta="0" android:toYDelta="50%p" />

    <alpha android:duration="2000" android:fromAlpha="1.0" android:toAlpha="0.0" />

</set>

popshow_anim的代碼如下:

<?xml version="1.0" encoding="utf-8"?>

<!--android<set>標簽代表一系列的幀動畫,可以在里面添加動畫效果 -->
<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <translate android:duration="2000" android:fromYDelta="100%p" android:toYDelta="0" />

    <alpha android:duration="2000" android:fromAlpha="0.0" android:toAlpha="1.0" />

</set>

備注:

android:fromYDelta   --- 表示Y的起始值

android:toYDelta       --- 表示Y的結束值

在這些屬性里面還可以加上%和p,例如:

android:toXDelta="100%"表示自身的100%也就是從View自己的位置開始。

android:toXDelta="80%p"表示父層View的80%是以它父層View為參照的

另外,如下:

android:fromXDelta="0"            android:toXDelta="-100%p"                往左邊消失

android:fromXDelta="-100%p" android:toXDelta="0"                           從左邊

android:fromXDelta="0"            android:toXDelta="100%p"                 往右邊消失

android:fromXDelta="100%p"  android:toXDelta="0"                           從右邊

經查閱資料才發現動畫的啟始位置雖然是在控件的左下角,但是相對位置卻不是我們平時想的那樣.

實現左右動畫的時候,其相對位置應該為(位置2為起始位置):

實現上下動畫的時候,其相對位置應該為(位置2為起始位置):

 

 

上面彈出 和 隱藏兩種動畫,我們在res / values / styles中定義動畫,如下:

 1 <resources>
 2 
 3     <!--
 4  Base application theme, dependent on API level. This theme is replaced  5  by AppBaseTheme from res/values-vXX/styles.xml on newer devices.  6 
 7     -->
 8     <style name="AppBaseTheme" parent="android:Theme.Light">
 9         <!--
10  Theme customizations available in newer API levels can go in 11  res/values-vXX/styles.xml, while customizations related to 12  backward-compatibility can go here. 13 
14         -->
15     </style>
16 
17     <!-- Application theme. -->
18     <style name="AppTheme" parent="AppBaseTheme">
19         <!-- All customizations that are NOT specific to a particular API-level can go here. -->
20     </style>
21 
22     <!-- 這個是加入的代碼 -->
23     <style name="mypopwindow_anim_style">
24 
25         <!-- 指定顯示的動畫xml -->
26         <item name="android:windowEnterAnimation">@anim/popshow_anim</item>
27 
28         <!-- 指定消失的動畫xml -->
29         <item name="android:windowExitAnimation">@anim/pophidden_anim</item>
30     </style>
31 
32 </resources>

 

(4)來到MainActivity之中,如下:

 1 package com.himi.popwindowdemo;  2 
 3 import android.app.Activity;  4 import android.content.Context;  5 import android.graphics.drawable.ColorDrawable;  6 import android.os.Bundle;  7 import android.view.Gravity;  8 import android.view.LayoutInflater;  9 import android.view.View; 10 import android.view.View.OnClickListener; 11 import android.view.WindowManager; 12 import android.widget.Button; 13 import android.widget.PopupWindow; 14 import android.widget.PopupWindow.OnDismissListener; 15 
16 public class MainActivity extends Activity { 17 
18  @Override 19     protected void onCreate(Bundle savedInstanceState) { 20         super.onCreate(savedInstanceState); 21  setContentView(R.layout.activity_main); 22         Button start = (Button) findViewById(R.id.start); 23         start.setOnClickListener(new OnClickListener() { 24 
25  @Override 26             public void onClick(View v) { 27  showPopwindow(); 28  } 29 
30  }); 31  } 32 
33     /**
34  * 顯示popupWindow 35      */
36     private void showPopwindow() { 37         // 利用layoutInflater獲得View
38         LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); 39         View view = inflater.inflate(R.layout.popwindowlayout, null); 40 
41         // 下面是兩種方法得到寬度高度 getWindow().getDecorView().getWidth()
42 
43         PopupWindow window = new PopupWindow(view, WindowManager.LayoutParams.MATCH_PARENT, 44  WindowManager.LayoutParams.WRAP_CONTENT); 45 
46         // 設置popWindow彈出窗體可點擊,這句話必須添加,並且是true
47         window.setFocusable(true); 48 
49         // 實例化一個ColorDrawable顏色為半透明
50         ColorDrawable dw = new ColorDrawable(0xb0000000); 51  window.setBackgroundDrawable(dw); 52 
53         // 設置popWindow的顯示和消失動畫
54  window.setAnimationStyle(R.style.mypopwindow_anim_style); 55         // 在底部顯示
56         window.showAtLocation(MainActivity.this.findViewById(R.id.start), Gravity.BOTTOM, 0, 0); 57 
58         // 這里檢驗popWindow里的button是否可以點擊
59         Button first = (Button) view.findViewById(R.id.first); 60         first.setOnClickListener(new OnClickListener() { 61 
62  @Override 63             public void onClick(View v) { 64 
65                 System.out.println("第一個按鈕被點擊了"); 66  } 67  }); 68 
69         // popWindow消失監聽方法
70         window.setOnDismissListener(new OnDismissListener() { 71 
72  @Override 73             public void onDismiss() { 74                 System.out.println("popWindow消失"); 75  } 76  }); 77 
78  } 79 }

(5)部署程序到模擬器上,如下:

剛開始進入程序,效果如下:

 

點擊上面的按鈕,效果如下,popupwindow 彈出顯示

 

點擊popupwindow之外的地方,效果如下,popupwindow 收縮隱藏

 

 

 

3. PopupWindow 在指定位置上的顯示(重點):

(轉載:http://www.cnblogs.com/zhwl/archive/2013/10/17/3373531.html

這里主要介紹PopupWindow 在控件的各個方向上的顯示(上、下、左、右),主要用到popupWindow 的showAtLocation()方法。

注意參數Gravity.NO_GRAVITY:用來標明沒有設定對齊方向

(1)在控件的上方

 1 private void showPopUp(View v) {  2         LinearLayout layout = new LinearLayout(this);  3  layout.setBackgroundColor(Color.GRAY);  4         
 5         TextView tv = new TextView(this);  6         tv.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));  7         tv.setText("I'm a pop !");  8  tv.setTextColor(Color.WHITE);  9         
10  layout.addView(tv); 11   
12         popupWindow = new PopupWindow(layout,120,120); 13         popupWindow.setFocusable(true); 14         popupWindow.setOutsideTouchable(true); 15         popupWindow.setBackgroundDrawable(new BitmapDrawable()); 16           
17         int[] location = new int[2]; 18  v.getLocationOnScreen(location); 19           
20         popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, location[0], location[1]-popupWindow.getHeight()); 21     }  

 

(2)在控件的下方

在控件的其他方向上顯示只需修改最后一行代碼即可,如:

1 popupWindow.showAsDropDown(v);

 

(3)在控件的左邊

1 popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, location[0]-popupWindow.getWidth(), location[1]);  

 

(4)在控件的右邊

1 popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, location[0]+v.getWidth(), location[1]); 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM