欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android自定義彈出窗口PopupWindow使用技巧

 更新時(shí)間:2021年10月19日 10:30:30   作者:sw926  
這篇文章主要介紹了Android自定義彈出窗口PopupWindow使用技巧,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

PopupWindow是Android上自定義彈出窗口,使用起來很方便。

PopupWindow的構(gòu)造函數(shù)為

復(fù)制代碼 代碼如下:
public PopupWindow(View contentView, int width, int height, boolean focusable)

contentView為要顯示的view,width和height為寬和高,值為像素值,也可以是MATCHT_PARENT和WRAP_CONTENT。

focusable為是否可以獲得焦點(diǎn),這是一個(gè)很重要的參數(shù),也可以通過public void setFocusable(boolean focusable)來設(shè)置,如果focusable為false,在一個(gè)Activity彈出一個(gè)PopupWindow,按返回鍵,由于PopupWindow沒有焦點(diǎn),會(huì)直接退出Activity。如果focusable為true,PopupWindow彈出后,所有的觸屏和物理按鍵都有PopupWindows處理。

如果PopupWindow中有Editor的話,focusable要為true。

下面實(shí)現(xiàn)一個(gè)簡(jiǎn)單的PopupWindow

主界面的layout為:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/layout_main"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".MainActivity" >

 <Button
  android:id="@+id/btn_test_popupwindow"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:text="@string/app_name" />

</RelativeLayout>

PopupWindow的layout為:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:background="#000000" >

 <TextView
  android:layout_width="wrap_content"
  android:layout_height="80dp"
  android:text="@string/app_name" 
  android:textColor="#ffffffff"
  android:layout_centerInParent="true"
  android:gravity="center"/>

</RelativeLayout>

Activity的代碼為:

public class MainActivity extends Activity {

 private Button mButton;
 private PopupWindow mPopupWindow;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  View popupView = getLayoutInflater().inflate(R.layout.layout_popupwindow, null);

  mPopupWindow = new PopupWindow(popupView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
  mPopupWindow.setTouchable(true);
  mPopupWindow.setOutsideTouchable(true);
  mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

  mButton = (Button) findViewById(R.id.btn_test_popupwindow);
  mButton.setOnClickListener(new OnClickListener() {

   @Override
   public void onClick(View v) {
    mPopupWindow.showAsDropDown(v);
   }
  });
 }
}

這三行代碼

mPopupWindow.setTouchable(true);
mPopupWindow.setOutsideTouchable(true);
mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

的作用是點(diǎn)擊空白處的時(shí)候PopupWindow會(huì)消失。

mPopupWindow.showAsDropDown(v);
這一行代碼將PopupWindow以一種向下彈出的動(dòng)畫的形式顯示出來

public void showAsDropDown(View anchor, int xoff, int yoff)
這個(gè)函數(shù)的第一個(gè)參數(shù)為一個(gè)View,我們這里是一個(gè)Button,那么PopupWindow會(huì)在這個(gè)Button下面顯示,xoff,yoff為顯示位置的偏移。

點(diǎn)擊按鈕,就會(huì)顯示出PopupWindow

很多時(shí)候我們把PopupWindow用作自定義的菜單,需要一個(gè)從底部向上彈出的效果,這就需要為PopupWindow添加動(dòng)畫。

在工程res下新建anim文件夾,在anim文件夾先新建兩個(gè)xml文件

menu_bottombar_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

 <translate
  android:duration="250"
  android:fromYDelta="100.0%"
  android:toYDelta="0.0" />

</set>

menu_bottombar_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

 <translate
  android:duration="250"
  android:fromYDelta="0.0"
  android:toYDelta="100%" />

</set>

在res/value/styles.xml添加一個(gè)sytle

 <style name="anim_menu_bottombar">
  <item name="android:windowEnterAnimation">@anim/menu_bottombar_in</item>
  <item name="android:windowExitAnimation">@anim/menu_bottombar_out</item>
 </style>

Acivity修改為

public class MainActivity extends Activity {

 private PopupWindow mPopupWindow;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  View popupView = getLayoutInflater().inflate(R.layout.layout_popupwindow, null);

  mPopupWindow = new PopupWindow(popupView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
  mPopupWindow.setTouchable(true);
  mPopupWindow.setOutsideTouchable(true);
  mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

  mPopupWindow.getContentView().setFocusableInTouchMode(true);
  mPopupWindow.getContentView().setFocusable(true);
  mPopupWindow.getContentView().setOnKeyListener(new OnKeyListener() {
   @Override
   public boolean onKey(View v, int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_MENU && event.getRepeatCount() == 0
      && event.getAction() == KeyEvent.ACTION_DOWN) {
     if (mPopupWindow != null && mPopupWindow.isShowing()) {
      mPopupWindow.dismiss();
     }
     return true;
    }
    return false;
   }
  });
 }

 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  if (keyCode == KeyEvent.KEYCODE_MENU && event.getRepeatCount() == 0) {
   if (mPopupWindow != null && !mPopupWindow.isShowing()) {
    mPopupWindow.showAtLocation(findViewById(R.id.layout_main), Gravity.BOTTOM, 0, 0);
   }
   return true;
  }
  return super.onKeyDown(keyCode, event);
 }
}

這樣點(diǎn)擊菜單鍵會(huì)彈出自定義的PopupWindow,點(diǎn)擊空白處或者返回鍵、菜單鍵,PopupWindow會(huì)消失。

文章如果有不對(duì)的地方,希望大家理解。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Flutter頁面?zhèn)髦档膸追N方式

    Flutter頁面?zhèn)髦档膸追N方式

    這篇文章主要介紹了Flutter頁面?zhèn)髦档膸追N方式,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-04-04
  • Android應(yīng)用退出登錄的實(shí)現(xiàn)方法

    Android應(yīng)用退出登錄的實(shí)現(xiàn)方法

    每一個(gè)app都會(huì)有一個(gè)”退出登陸”的功能,當(dāng)點(diǎn)擊退出之后需要將所有的Activity都finish掉,開始是想將棧中的所有Activity清除掉,但是沒有找到方法,后來用廣播實(shí)現(xiàn)了。下面小編給大家分享android應(yīng)用退出登錄的實(shí)現(xiàn)方法,需要的朋友參考下
    2017-04-04
  • Material Design系列之自定義Behavior支持所有View

    Material Design系列之自定義Behavior支持所有View

    這篇文章主要為大家詳細(xì)介紹了Material Design系列之自定義Behavior支持所有View,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-09-09
  • InputFilter實(shí)現(xiàn)EditText文本輸入過濾器實(shí)例代碼解析

    InputFilter實(shí)現(xiàn)EditText文本輸入過濾器實(shí)例代碼解析

    EditText是Android的文本輸入框控件。這篇文章給大家介紹 InputFilter實(shí)現(xiàn)EditText文本輸入過濾器實(shí)例代碼解析,需要的朋友一起看看吧
    2016-11-11
  • Android自定義View實(shí)現(xiàn)可展開、會(huì)呼吸的按鈕

    Android自定義View實(shí)現(xiàn)可展開、會(huì)呼吸的按鈕

    這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)可展開、會(huì)呼吸的按鈕,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-08-08
  • android獲取屏幕高度和寬度的實(shí)現(xiàn)方法

    android獲取屏幕高度和寬度的實(shí)現(xiàn)方法

    這篇文章主要介紹了android獲取屏幕高度和寬度的實(shí)現(xiàn)方法,較為詳細(xì)的分析了Android獲取屏幕高度和寬度的原理與實(shí)現(xiàn)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-01-01
  • Android實(shí)現(xiàn)閱讀APP平移翻頁效果

    Android實(shí)現(xiàn)閱讀APP平移翻頁效果

    這篇文章主要介紹了Android實(shí)現(xiàn)閱讀APP平移翻頁效果的具體方法,模仿多看閱讀平移翻頁,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-03-03
  • Android運(yùn)用onTouchEvent自定義滑動(dòng)布局

    Android運(yùn)用onTouchEvent自定義滑動(dòng)布局

    這篇文章主要為大家詳細(xì)介紹了Android運(yùn)用onTouchEvent寫一個(gè)上下滑動(dòng)的布局,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • 深入淺析Android消息機(jī)制

    深入淺析Android消息機(jī)制

    在Android中,線程內(nèi)部或者線程之間進(jìn)行信息交互時(shí)經(jīng)常會(huì)使用消息,這些基礎(chǔ)的東西如果我們熟悉其內(nèi)部的原理,將會(huì)使我們?nèi)菀?、更好地架?gòu)系統(tǒng),避免一些低級(jí)的錯(cuò)誤,通過本文給大家介紹android消息機(jī)制,感興趣的朋友一起學(xué)習(xí)吧
    2016-04-04
  • Android 多線程的實(shí)現(xiàn)方法總結(jié)

    Android 多線程的實(shí)現(xiàn)方法總結(jié)

    這篇文章主要介紹了Android 多線程的實(shí)現(xiàn)方法總結(jié)的相關(guān)資料,這里提供三種方法,幫助大家掌握這部分內(nèi)容,需要的朋友可以參考下
    2017-08-08

最新評(píng)論