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

Android控件PopupWindow模仿ios底部彈窗

 更新時(shí)間:2021年10月20日 10:51:22   作者:qq_30379689  
這篇文章主要為大家詳細(xì)介紹了Android控件PopupWindow仿ios底部彈窗效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

前言

在H5火熱的時(shí)代,許多框架都出了底部彈窗的控件,在H5被稱(chēng)為彈出菜單ActionSheet,今天我們也來(lái)模仿一個(gè)ios的底部彈窗,取材于蘋(píng)果QQ的選擇頭像功能。

正文

廢話不多說(shuō),先來(lái)個(gè)今天要實(shí)現(xiàn)的效果圖

整個(gè)PopupWindow的開(kāi)啟代碼

private void openPopupWindow(View v) {
  //防止重復(fù)按按鈕
  if (popupWindow != null && popupWindow.isShowing()) {
    return;
  }
  //設(shè)置PopupWindow的View
  View view = LayoutInflater.from(this).inflate(R.layout.view_popupwindow, null);
  popupWindow = new PopupWindow(view, RelativeLayout.LayoutParams.MATCH_PARENT,
      RelativeLayout.LayoutParams.WRAP_CONTENT);
  //設(shè)置背景,這個(gè)沒(méi)什么效果,不添加會(huì)報(bào)錯(cuò)
  popupWindow.setBackgroundDrawable(new BitmapDrawable());
  //設(shè)置點(diǎn)擊彈窗外隱藏自身
  popupWindow.setFocusable(true);
  popupWindow.setOutsideTouchable(true);
  //設(shè)置動(dòng)畫(huà)
  popupWindow.setAnimationStyle(R.style.PopupWindow);
  //設(shè)置位置
  popupWindow.showAtLocation(v, Gravity.BOTTOM, 0, navigationHeight);
  //設(shè)置消失監(jiān)聽(tīng)
  popupWindow.setOnDismissListener(this);
  //設(shè)置PopupWindow的View點(diǎn)擊事件
  setOnPopupViewClick(view);
  //設(shè)置背景色
  setBackgroundAlpha(0.5f);
}

步驟分析:

PopupWindow的布局
PopupWindow的創(chuàng)建
PopupWindow添加動(dòng)畫(huà)效果
PopupWindow設(shè)置背景陰影
PopupWindow監(jiān)聽(tīng)點(diǎn)擊事件
獲取NavigationBar的高度

PopupWindow的布局:在Layout中,設(shè)計(jì)我們需要的布局

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

  <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="8dp" android:background="@drawable/popup_shape" android:orientation="vertical">

    <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:padding="16dp" android:text="你可以將照片上傳至照片墻" android:textColor="#666" android:textSize="14sp" />

    <View android:layout_width="match_parent" android:layout_height="0.1px" android:background="#888" />

    <TextView android:id="@+id/tv_pick_phone" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:padding="16dp" android:text="從手機(jī)相冊(cè)選擇" android:textColor="#118" android:textSize="18sp" />

    <View android:layout_width="match_parent" android:layout_height="0.1px" android:background="#888" />

    <TextView android:id="@+id/tv_pick_zone" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:padding="16dp" android:text="從空間相冊(cè)選擇" android:textColor="#118" android:textSize="18sp" />
  </LinearLayout>

  <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="8dp" android:background="@drawable/popup_shape">

    <TextView android:id="@+id/tv_cancel" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:padding="16dp" android:text="取消" android:textColor="#118" android:textSize="18sp" android:textStyle="bold" />
  </LinearLayout>
</LinearLayout>

其效果是:

PopupWindow的創(chuàng)建:這個(gè)創(chuàng)建與我們普通的控件創(chuàng)建方法是一樣的

//設(shè)置PopupWindow的View
View view = LayoutInflater.from(this).inflate(R.layout.view_popupwindow, null);
popupWindow = new PopupWindow(view, RelativeLayout.LayoutParams.MATCH_PARENT,
        RelativeLayout.LayoutParams.WRAP_CONTENT);

PopupWindow添加動(dòng)畫(huà)效果:我們創(chuàng)建一個(gè)anim文件夾,創(chuàng)建我們的out和in動(dòng)畫(huà)效果,然后在style添加我們的動(dòng)畫(huà)

<?xml version="1.0" encoding="utf-8"?>
<!--進(jìn)入動(dòng)畫(huà)-->
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromYDelta="100%" android:toYDelta="0" android:duration="200"/>

<?xml version="1.0" encoding="utf-8"?>
<!--退出動(dòng)畫(huà)-->
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromYDelta="0" android:toYDelta="100%" android:duration="200"/>

<!--彈窗動(dòng)畫(huà)-->
<style name="PopupWindow"> <item name="android:windowEnterAnimation">@anim/window_in</item> <item name="android:windowExitAnimation">@anim/window_out</item> </style>

//設(shè)置動(dòng)畫(huà)
popupWindow.setAnimationStyle(R.style.PopupWindow);

PopupWindow設(shè)置背景陰影:彈窗打開(kāi)時(shí)設(shè)置透明度為0.5,彈窗消失時(shí)設(shè)置透明度為1

//設(shè)置屏幕背景透明效果
public void setBackgroundAlpha(float alpha) {
  WindowManager.LayoutParams lp = getWindow().getAttributes();
  lp.alpha = alpha;
  getWindow().setAttributes(lp);
}

PopupWindow監(jiān)聽(tīng)點(diǎn)擊事件:監(jiān)聽(tīng)我們PopupWindow里面控件的點(diǎn)擊事件

//設(shè)置PopupWindow的View點(diǎn)擊事件
setOnPopupViewClick(view);

private void setOnPopupViewClick(View view) {
  TextView tv_pick_phone, tv_pick_zone, tv_cancel;
  tv_pick_phone = (TextView) view.findViewById(R.id.tv_pick_phone);
  tv_pick_zone = (TextView) view.findViewById(R.id.tv_pick_zone);
  tv_cancel = (TextView) view.findViewById(R.id.tv_cancel);
  tv_pick_phone.setOnClickListener(this);
  tv_pick_zone.setOnClickListener(this);
  tv_cancel.setOnClickListener(this);
}

獲取NavigationBar的高度:這里需要適配有些手機(jī)沒(méi)有NavigationBar有些手機(jī)有,這里以存在NavigationBar來(lái)演示
int resourceId = getResources().getIdentifier("navigation_bar_height", "dimen", "android");
navigationHeight = getResources().getDimensionPixelSize(resourceId);

對(duì)存在NavigationBar的手機(jī)上,設(shè)置其PopupWindow的出現(xiàn)位置
//設(shè)置位置
popupWindow.showAtLocation(v, Gravity.BOTTOM, 0, navigationHeight);

對(duì)沒(méi)有NavigationBar的手機(jī)上,設(shè)置其PopupWindow的出現(xiàn)位置
//設(shè)置位置
popupWindow.showAtLocation(v, Gravity.BOTTOM, 0, 0);

源碼

Github:https://github.com/AndroidHensen/IOSPopupWindow

public class MainActivity extends AppCompatActivity implements View.OnClickListener, PopupWindow.OnDismissListener {

  private Button bt_open;
  private PopupWindow popupWindow;
  private int navigationHeight;

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

    bt_open = (Button) findViewById(R.id.bt_open);
    bt_open.setOnClickListener(this);

    int resourceId = getResources().getIdentifier("navigation_bar_height", "dimen", "android");
    navigationHeight = getResources().getDimensionPixelSize(resourceId);
  }

  @Override
  public void onClick(View v) {
    switch (v.getId()) {
      case R.id.bt_open:
        openPopupWindow(v);
        break;
      case R.id.tv_pick_phone:
        Toast.makeText(this, "從手機(jī)相冊(cè)選擇", Toast.LENGTH_SHORT).show();
        popupWindow.dismiss();
        break;
      case R.id.tv_pick_zone:
        Toast.makeText(this, "從空間相冊(cè)選擇", Toast.LENGTH_SHORT).show();
        popupWindow.dismiss();
        break;
      case R.id.tv_cancel:
        popupWindow.dismiss();
        break;
    }
  }

  private void openPopupWindow(View v) {
    //防止重復(fù)按按鈕
    if (popupWindow != null && popupWindow.isShowing()) {
      return;
    }
    //設(shè)置PopupWindow的View
    View view = LayoutInflater.from(this).inflate(R.layout.view_popupwindow, null);
    popupWindow = new PopupWindow(view, RelativeLayout.LayoutParams.MATCH_PARENT,
        RelativeLayout.LayoutParams.WRAP_CONTENT);
    //設(shè)置背景,這個(gè)沒(méi)什么效果,不添加會(huì)報(bào)錯(cuò)
    popupWindow.setBackgroundDrawable(new BitmapDrawable());
    //設(shè)置點(diǎn)擊彈窗外隱藏自身
    popupWindow.setFocusable(true);
    popupWindow.setOutsideTouchable(true);
    //設(shè)置動(dòng)畫(huà)
    popupWindow.setAnimationStyle(R.style.PopupWindow);
    //設(shè)置位置
    popupWindow.showAtLocation(v, Gravity.BOTTOM, 0, navigationHeight);
    //設(shè)置消失監(jiān)聽(tīng)
    popupWindow.setOnDismissListener(this);
    //設(shè)置PopupWindow的View點(diǎn)擊事件
    setOnPopupViewClick(view);
    //設(shè)置背景色
    setBackgroundAlpha(0.5f);
  }

  private void setOnPopupViewClick(View view) {
    TextView tv_pick_phone, tv_pick_zone, tv_cancel;
    tv_pick_phone = (TextView) view.findViewById(R.id.tv_pick_phone);
    tv_pick_zone = (TextView) view.findViewById(R.id.tv_pick_zone);
    tv_cancel = (TextView) view.findViewById(R.id.tv_cancel);
    tv_pick_phone.setOnClickListener(this);
    tv_pick_zone.setOnClickListener(this);
    tv_cancel.setOnClickListener(this);
  }

  //設(shè)置屏幕背景透明效果
  public void setBackgroundAlpha(float alpha) {
    WindowManager.LayoutParams lp = getWindow().getAttributes();
    lp.alpha = alpha;
    getWindow().setAttributes(lp);
  }

  @Override
  public void onDismiss() {
    setBackgroundAlpha(1);
  }
}

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

相關(guān)文章

  • Android 添加系統(tǒng)設(shè)置屬性的實(shí)現(xiàn)及步驟

    Android 添加系統(tǒng)設(shè)置屬性的實(shí)現(xiàn)及步驟

    這篇文章主要介紹了Android 添加系統(tǒng)設(shè)置屬性的實(shí)現(xiàn)及步驟的相關(guān)資料,需要的朋友可以參考下
    2017-07-07
  • Android ViewPager中顯示圖片與播放視頻的填坑記錄

    Android ViewPager中顯示圖片與播放視頻的填坑記錄

    這篇文章主要給介紹了關(guān)于Android ViewPager中顯示圖片與播放視頻的一些填坑記錄,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)各位Android開(kāi)發(fā)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧。
    2018-05-05
  • Android學(xué)習(xí)筆記——Menu介紹(二)

    Android學(xué)習(xí)筆記——Menu介紹(二)

    這次將繼續(xù)上一篇文章沒(méi)有講完的Menu的學(xué)習(xí),上下文菜單(Context menu)和彈出菜單(Popup menu)
    2014-10-10
  • Android的搜索框架實(shí)例詳解

    Android的搜索框架實(shí)例詳解

    這篇文章主要介紹了Android的搜索框架實(shí)例詳解的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,感興趣的朋友一起看看吧
    2016-10-10
  • 安卓(Android)ListView 顯示圖片文字

    安卓(Android)ListView 顯示圖片文字

    本文主要介紹Android中重要組件ListView,在編程中經(jīng)常會(huì)用到ListView 顯示圖片和文字,這里給大家一個(gè)小例子,希望能幫助有需要的同學(xué)
    2016-07-07
  • 詳解Android中motion_toast的使用

    詳解Android中motion_toast的使用

    我們通常會(huì)用 toast(也叫吐司)來(lái)顯示提示信息,例如網(wǎng)絡(luò)請(qǐng)求錯(cuò)誤,校驗(yàn)錯(cuò)誤等等。本文為大家介紹一個(gè)非常有趣的toast組件 —— motion_toast,感興趣的可以了解一下
    2022-06-06
  • Android自定義videoview仿抖音界面

    Android自定義videoview仿抖音界面

    這篇文章主要為大家詳細(xì)介紹了Android自定義videoview仿抖音界面,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • Android自定義漸變式炫酷ListView下拉刷新動(dòng)畫(huà)

    Android自定義漸變式炫酷ListView下拉刷新動(dòng)畫(huà)

    這篇文章主要為大家詳細(xì)介紹了Android自定義漸變式炫酷ListView下拉刷新動(dòng)畫(huà),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-02-02
  • android鬧鈴簡(jiǎn)單實(shí)現(xiàn)

    android鬧鈴簡(jiǎn)單實(shí)現(xiàn)

    本文給大家分享的是一段簡(jiǎn)單的實(shí)現(xiàn)Android系統(tǒng)的鬧鈴的代碼,非常實(shí)用,想做Android開(kāi)發(fā)的小伙伴們可以參考下。
    2015-03-03
  • Android中Activity的四種啟動(dòng)模式和onNewIntent()

    Android中Activity的四種啟動(dòng)模式和onNewIntent()

    android 中activity的啟動(dòng)模式分為四種,(standard、singleTop、singTask、singleInstance),本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友參考下吧
    2018-08-08

最新評(píng)論