本文主要是介紹Android中實現底部彈窗的的正確姿勢,如果你在實現底部彈窗時遇到了一些問題,那麼請仔細閱讀本文,相信文章會對你有所幫助,文章有點長,請耐心讀完。
收穫早知道
閱讀完本文後,你可以有以下收穫
- 利用PopupWindow實現底部彈窗
- PopupWindow實現底部彈窗時的缺點
- 解決利用PopupWindow實現底部彈窗,無法覆蓋狀態列的問題
- 利用dialog實現底部彈窗
- 利用dialogFragment實現底部彈窗
- 利用BottomSheetDialog實現底部彈窗
- 通過閱讀原始碼瞭解BottomSheetDialog實現底部彈窗的實質
實現底部彈窗的方式
由於本人水平有限,只知道一下幾種實現底部彈窗的方式
- 利用PopupWindow實現底部彈窗。
- 利用Dialog實現底部彈窗。
- 利用DialogFragment實現底部彈窗。
- 利用BottomSheetDialog實現底部彈窗。
下面,就利用以上四種方式分別實現Android中的底部彈窗。
利用PopWindow實現底部彈窗
因為本文主要是介紹實現底部彈窗的方式,所以,不會對PopupWindow進行具體的講解,大家可以到這裡瞭解PopupWindow。
直接進入主題,按照套路,一步步實現利用PopupWindow實現底部彈窗。首先,寫一個佈局檔案作為PopupWindow中的內容,佈局檔案如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="#553b3a3a"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:id="@+id/content"
android:background="@android:color/white"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:textColor="#333"
android:text="相機"
android:padding="8dp"
android:id="@+id/open_from_camera"
android:gravity="center"
android:textSize="15sp"
android:layout_height="40dp" />
<TextView
android:layout_marginTop="1dp"
android:id="@+id/open_album"
android:layout_width="match_parent"
android:textColor="#333"
android:text="開啟相簿"
android:padding="8dp"
android:gravity="center"
android:textSize="15sp"
android:layout_height="40dp" />
<TextView
android:layout_marginTop="1dp"
android:id="@+id/cancel"
android:layout_width="match_parent"
android:textColor="#333"
android:text="取消"
android:padding="8dp"
android:gravity="center"
android:textSize="15sp"
android:layout_height="40dp" />
</LinearLayout>
</RelativeLayout>
複製程式碼
注:這裡使用的是填充父視窗的方式,如果不這樣做的話,就不能看出遮住後面的效果,看下圖更容易理解,左圖為填充父佈局的方式,右圖為 自適應的方式
注:因為採用填充父佈局的方式,這裡彈出的視窗都是PopupWindow,所以點選左圖中的陰影彈窗不會消失,因為陰影也是PopupWindow呀! 解決方法就是,把左圖中的陰影部分用一個TextView控制元件填充,然後為這個TextView設定點選事件,點選TextView時讓PopupWindow消失就行了。下面看下利用PopupWindow實現底部彈窗的程式碼,重要的方法我會具體講解
private void initPopupWindow() {
//要在佈局中顯示的佈局
contentView = LayoutInflater.from(this).inflate(R.layout.popup_layout, null, false);
//例項化PopupWindow並設定寬高
popupWindow = new PopupWindow(contentView, LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
popupWindow.setBackgroundDrawable(new BitmapDrawable());
//點選外部消失,這裡因為PopupWindow填充了整個視窗,所以這句程式碼就沒用了
popupWindow.setOutsideTouchable(true);
//設定可以點選
popupWindow.setTouchable(true);
//進入退出的動畫
popupWindow.setAnimationStyle(R.style.MyPopWindowAnim);
}
private void showPopWindow() {
View rootview = LayoutInflater.from(MainActivity.this).inflate(R.layout.activity_main, null);
popupWindow.showAtLocation(rootview, Gravity.BOTTOM, 0, 0);
}
複製程式碼
重點看一下這句程式碼
popupWindow.showAtLocation(rootview, Gravity.BOTTOM, 0, 0);
複製程式碼
這句程式碼是設定彈出視窗從哪裡彈出,showAtLocation (View parent,int gravity,int x,int y) 方法有四個引數,第一個引數是父佈局,第二個為從父佈局的哪裡彈出,x和y是相對於父佈局彈出位置的偏移量。由於,我們要將mPopWindow放在整個螢幕的最低部,所以我們將R.layout.activity_main做為它的父容器,將其顯示在BOTTOM的位置。
再仔細看下上圖,利用PopupWindow實現從底部的彈窗並不能覆蓋到狀態列,下面就來解決這個問題。
解決PopupWindow彈出的視窗不能覆蓋狀態列問題
想要覆蓋到狀態列還需要添以下程式碼
//彈出的視窗是否覆蓋狀態列
public void fitPopupWindowOverStatusBar(boolean needFullScreen) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
try {
//利用反射重新設定mLayoutInScreen的值,當mLayoutInScreen為true時則PopupWindow覆蓋全屏。
Field mLayoutInScreen = PopupWindow.class.getDeclaredField("mLayoutInScreen");
mLayoutInScreen.setAccessible(true);
mLayoutInScreen.set(popupWindow, needFullScreen);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
複製程式碼
再改變一下顯示PopupWindow的程式碼,如下
//設定是否遮住狀態列
fitPopupWindowOverStatusBar(true);
View rootview = LayoutInflater.from(MainActivity.this).inflate(R.layout.activity_main, null);
popupWindow.showAtLocation(rootview, Gravity.BOTTOM, 0, 0);
複製程式碼
再看下效果
利用Dialog實現底部彈窗
先看下程式碼,然後再講解
public class DialogFromBottom extends Dialog{
private final static int mAnimationDuration = 200;
// 持有 ContentView,為了做動畫
private View mContentView;
private boolean mIsAnimating = false;
private OnBottomSheetShowListener mOnBottomSheetShowListener;
public DialogFromBottom(@NonNull Context context) {
super(context, R.style.AppTheme_BottomSheet);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().getDecorView().setPadding(0, 0, 0, 0);
// 在底部,寬度撐滿
WindowManager.LayoutParams params = getWindow().getAttributes();
params.height = ViewGroup.LayoutParams.WRAP_CONTENT;
params.gravity = Gravity.BOTTOM | Gravity.CENTER;//dialog從哪裡彈出
//彈出視窗的寬高
int screenWidth = QMUIDisplayHelper.getScreenWidth(getContext());
int screenHeight = QMUIDisplayHelper.getScreenHeight(getContext());
params.width = screenWidth < screenHeight ? screenWidth : screenHeight;
getWindow().setAttributes(params);
setCanceledOnTouchOutside(true);
}
//設定彈出dialog中的layout
@Override
public void setContentView(int layoutResID) {
mContentView = LayoutInflater.from(getContext()).inflate(layoutResID, null);
super.setContentView(mContentView);
}
@Override
public void setContentView(@NonNull View view) {
mContentView = view;
super.setContentView(view);
}
@Override
public void setContentView(@NonNull View view, ViewGroup.LayoutParams params) {
mContentView = view;
super.setContentView(view, params);
}
/**
* BottomSheet升起動畫
*/
private void animateUp() {
if (mContentView == null) {
return;
}
TranslateAnimation translate = new TranslateAnimation(
Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f,
Animation.RELATIVE_TO_SELF, 1f, Animation.RELATIVE_TO_SELF, 0f
);
AlphaAnimation alpha = new AlphaAnimation(0, 1);
AnimationSet set = new AnimationSet(true);
set.addAnimation(translate);
set.addAnimation(alpha);
set.setInterpolator(new DecelerateInterpolator());
set.setDuration(mAnimationDuration);
set.setFillAfter(true);
mContentView.startAnimation(set);
}
/**
* BottomSheet降下動畫
*/
private void animateDown() {
if (mContentView == null) {
return;
}
TranslateAnimation translate = new TranslateAnimation(
Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f,
Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 1f
);
AlphaAnimation alpha = new AlphaAnimation(1, 0);
AnimationSet set = new AnimationSet(true);
set.addAnimation(translate);
set.addAnimation(alpha);
set.setInterpolator(new DecelerateInterpolator());
set.setDuration(mAnimationDuration);
set.setFillAfter(true);
set.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
mIsAnimating = true;
}
@Override
public void onAnimationEnd(Animation animation) {
mIsAnimating = false;
/**
* Bugfix: Attempting to destroy the window while drawing!
*/
mContentView.post(new Runnable() {
@Override
public void run() {
// java.lang.IllegalArgumentException: View=com.android.internal.policy.PhoneWindow$DecorView{22dbf5b V.E...... R......D 0,0-1080,1083} not attached to window manager
// 在dismiss的時候可能已經detach了,簡單try-catch一下
try {
DialogFromBottom.super.dismiss();
} catch (Exception e) {
//這裡處理異常
}
}
});
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
mContentView.startAnimation(set);
}
@Override
public void show() {
super.show();
animateUp();
if (mOnBottomSheetShowListener != null) {
mOnBottomSheetShowListener.onShow();
}
}
@Override
public void dismiss() {
if (mIsAnimating) {
return;
}
animateDown();
}
public interface OnBottomSheetShowListener {
void onShow();
}
}
複製程式碼
額,程式碼有點長,其實很容易理解,這裡主要說下onCreate方法中的內容,可以仔細看下注釋。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().getDecorView().setPadding(0, 0, 0, 0);//把父佈局的padding都設為0,目的是可以dialog撐滿全屏。
// 在底部,寬度撐滿
WindowManager.LayoutParams params = getWindow().getAttributes();
params.height = ViewGroup.LayoutParams.WRAP_CONTENT;
params.gravity = Gravity.BOTTOM | Gravity.CENTER;//dialog從底部彈出
//彈出視窗的寬高,DisplayHelper.getScreenWidth(getContext());和DisplayHelper.getScreenHeight(getContext());是拿到螢幕的寬高。
int screenWidth = DisplayHelper.getScreenWidth(getContext());
int screenHeight = DisplayHelper.getScreenHeight(getContext());
params.width = screenWidth < screenHeight ? screenWidth : screenHeight;//適配手機橫屏
getWindow().setAttributes(params);//重新設定dialog的屬性
setCanceledOnTouchOutside(true);//設定觸控dialog以外,dialog是否消失
}
複製程式碼
利用Dialog實現底部彈窗就是繼承系統Dialog然後重寫了onCreate方法,設定dialog從底部彈出。因為是繼承Dialog,所以有Dialog的特性,既觸控底部彈窗以外的部分,彈窗會自動消失,這裡就不在演示,可以在文末獲取原始碼,自己實驗一下就知道了。
利用DialogFragment實現底部彈窗
在實現彈窗之前,先了解一下DialogFragment
DialogFragment在android 3.0時被引入。是一種特殊的Fragment,用於在Activity的內容之上展示一個模態的對話方塊。
使用DialogFragment至少需要實現onCreateView或者onCreateDIalog方法。onCreateView即使用定義的xml佈局檔案展示Dialog。onCreateDialog即利用AlertDialog或者Dialog建立出Dialog。下面通過實現onCreateView方法來實現底部彈窗。
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.dialog_layout, container, false);
return view;
}
@Override
public void onStart() {
super.onStart();
initParams();//初始化彈窗的引數
}
private void initParams() {
Window window = getDialog().getWindow();
if (window != null) {
WindowManager.LayoutParams lp = window.getAttributes();
//調節灰色背景透明度[0-1],預設0.5f
lp.dimAmount = dimAmount;
//是否在底部顯示
if (showBottom) {
lp.gravity = Gravity.BOTTOM;
if (animStyle == 0) {
animStyle = R.style.DefaultAnimation;
}
}
//設定dialog寬度
if (width == 0) {
lp.width = DisplayHelper.getScreenWidth(getActivity()) - 2 * DisplayHelper.dp2px(getActivity(), margin);
} else {
lp.width = DisplayHelper.dp2px(getActivity(), width);
}
//設定dialog高度
if (height == 0) {
lp.height = WindowManager.LayoutParams.WRAP_CONTENT;
} else {
lp.height = DisplayHelper.dp2px(getActivity(), height);
}
//設定dialog進入、退出的動畫
window.setWindowAnimations(animStyle);
window.setAttributes(lp);
}
setCancelable(outCancel);//設定點選外部是否消失
}
複製程式碼
因為DialogFragment也是Fragment,所以,DialogFragment有和Fragment一樣的生命週期,在onStart方法中初始化彈窗的資料,在onCreateView中載入佈局,同樣,和Fragment使用方法也是一樣的,下面看下在Activity中的使用
void showDialog() {
FragmentTransaction ft = getFragmentManager().beginTransaction();
// Create and show the dialog.
DialogFragmentFromBottom newFragment = new DialogFragmentFromBottom();
newFragment.show(ft, "dialog");
}
複製程式碼
利用BottomSheetDialog實現底部彈窗
這種方式實現底部彈窗,我之前並沒有用過,還是這篇文章下面的評論說現在都在用bottonSheetDialog了,我才知道可以用這種方式實現底部彈窗。亡羊補牢,為時不晚,為了以後讓閱讀本文的人可以知道這種方式,就趕緊把這種實現底部彈窗的方式加到本文中了。使用BottonSheetDialog真的非常簡單,就像直接使用Dialog一樣,下面看一下使用的程式碼
//使用BottomSheetDialog方式實現底部彈窗
void showBottomSheetDialog(){
BottomSheetDialog bottomSheet = new BottomSheetDialog(this);//例項化BottomSheetDialog
bottomSheet.setCancelable(true);//設定點選外部是否可以取消
bottomSheet.setContentView(R.layout.dialog_layout);//設定對框框中的佈局
bottomSheet.show();//顯示彈窗
}
複製程式碼
程式碼很簡單,現在看下BottomSheetDialog的原始碼,BottomSheetDialog是繼承AppCompatDialog的,間接的繼承了Dialog,然後重寫量一些方法,下面看程式碼
//設定需要展示的view
@Override
public void setContentView(@LayoutRes int layoutResId) {
super.setContentView(wrapInBottomSheet(layoutResId, null, null));
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Window window = getWindow();
if (window != null) {
if (Build.VERSION.SDK_INT >= 21) {
//設定5.0以上系統狀態列
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
}
//設定佈局的屬性
window.setLayout(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT);
}
}
複製程式碼
可以發現setContentView引用了wrapInBottomSheet方法,wrapInBottomSheet方法就是實現底部彈窗的重要方法,下面看下這個方法的內容
private View wrapInBottomSheet(int layoutResId, View view, ViewGroup.LayoutParams params) {
final FrameLayout container = (FrameLayout) View.inflate(getContext(),
R.layout.design_bottom_sheet_dialog, null);
final CoordinatorLayout coordinator =
(CoordinatorLayout) container.findViewById(R.id.coordinator);
if (layoutResId != 0 && view == null) {
view = getLayoutInflater().inflate(layoutResId, coordinator, false);
}
FrameLayout bottomSheet = (FrameLayout) coordinator.findViewById(R.id.design_bottom_sheet);//這個view就是放置我們自己佈局的容器
mBehavior = BottomSheetBehavior.from(bottomSheet);
mBehavior.setBottomSheetCallback(mBottomSheetCallback);
mBehavior.setHideable(mCancelable);
if (params == null) {
bottomSheet.addView(view);
} else {
bottomSheet.addView(view, params);
}
// We treat the CoordinatorLayout as outside the dialog though it is technically inside
coordinator.findViewById(R.id.touch_outside).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (mCancelable && isShowing() && shouldWindowCloseOnTouchOutside()) {
cancel();
}
}
});
//此處省略部分程式碼
......
return container;
}
複製程式碼
可以看到wrapInBottomSheet這個方法主要是將我們自己的佈局放在design_bottom_sheet_dialog這個layout中的id為design_bottom_sheet的view中了,看下design_bottom_sheet_dialog這個佈局你就會明白了
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<View
android:id="@+id/touch_outside"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:importantForAccessibility="no"
android:soundEffectsEnabled="false"
tools:ignore="UnusedAttribute"/>
<FrameLayout
android:id="@+id/design_bottom_sheet"
style="?attr/bottomSheetStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|top"
android:clickable="true"
app:layout_behavior="@string/bottom_sheet_behavior"/>
</android.support.design.widget.CoordinatorLayout>
</FrameLayout>
複製程式碼
通過閱讀原始碼你會發現BottemSheetDialog的實質就是Dialog中填充了一個全屏的佈局,然後在這個佈局的底部把你自己的佈局放置進去。
結束語
好了,到這裡四種實現底部彈窗的方式已經講完了,大家可以下載原始碼研究一下,原始碼在這裡,在做專案時選擇最適合的就好,在這裡還是推薦使用BottomSheetDialog吧!畢竟使用很簡單。
轉載請註明出處:www.wizardev.com