做一个这样的弹框效果,在底部控件上方弹出
传入指定控件的高度,popupwindow减去这个高度,然后显示的时候,上移这个高度 parentViewHeight 为指定控件的高度
public class ShoppingCarWindow extends PopupWindow{
。。。。
//设置SelectPicPopupWindow弹出窗体的宽
this.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
//设置SelectPicPopupWindow弹出窗体的高
DisplayMetrics displayMetrics=mContext.getResources().getDisplayMetrics();
int height = displayMetrics.heightPixels;
this.setHeight(height-parentViewHeight);
}
显示
ShoppingCarWindow shoppingCarWindow =new ShoppingCarWindow(ServicePackageActivity.this,null,10, binding.rlBottom.getHeight());
shoppingCarWindow.setOnItemClickListener((position, num) -> {
binding.tvCarNum.setText(num);
});
shoppingCarWindow.showAsDropDown(binding.rlBottom, Gravity.TOP, 0, binding.rlBottom.getHeight());
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<View
android:id="@+id/ll_empty"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#80000000"
/>
<LinearLayout
android:orientation="vertical"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textColor="@color/gray_9b9b9b"
android:text="已选服务"
android:layout_marginBottom="10dp"
android:layout_marginTop="15dp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginBottom="5dp"
android:background="@color/white" />
</LinearLayout>
</LinearLayout>
另外一些其他效果需要计算,比如 移动端 android PopupWindow在控件上方显示
让popupwindow显示在某个控件的上方
|