最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Android使用popUpWindow带遮罩层的弹出框
时间:2022-06-25 22:47:04 编辑:袖梨 来源:一聚教程网
上次项目中实现了新功能,就一直想添加到博客里来着,惰性发作起来简直太可怕,不说了,跟着一起写吧,三步即可实现简单的弹出框功能,首先看效果——
首先:主页面布局,触发控件一定要有,再有就是给根标签设置id
第二步:弹出框样式设置
最后:就是主代码了
public class MainActivity extends Activity { private RelativeLayout layout; private Button btn; private boolean isFold=true; // 判断是否显示 private PopupWindow taxWindow; // 弹出框 private TextView tv=null; // 遮罩层 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); layout=(RelativeLayout)findViewById(R.id.layout); btn=(Button)findViewById(R.id.btn); btn.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v){ if(isFold){ isFold=false; showTaxDetail(v); tv=new TextView(MainActivity.this); tv.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,ViewGroup.LayoutParams.FILL_PARENT)); tv.setBackgroundColor(Color.parseColor("#66000000")); tv.setClickable(true); tv.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { isFold=true; taxWindow.dismiss(); layout.removeView(tv); } }); layout.addView(tv); } else{ isFold=true; taxWindow.dismiss(); layout.removeView(tv); } } }); } private void showTaxDetail(View view){ LayoutInflater inflater=LayoutInflater.from(this); // 加载弹出框的布局 View contentView=inflater.inflate(R.layout.ewj_tax_detail, null); contentView.measure(0,0); taxWindow=new PopupWindow(contentView,contentView.getMeasuredWidth(),contentView.getMeasuredHeight(),true); //taxWindow.setBackgroundDrawable(getResources().getDrawable(R.drawable.ic_launcher)); //taxWindow.setOutsideTouchable(true); taxWindow.setFocusable(false); int[] location = new int[2]; // 得到按钮控件的坐标,便于定位弹出框位置 btn.getLocationInWindow(location); int taxWindowWidth=taxWindow.getContentView().getMeasuredWidth(); int screenWidth = getWindowManager().getDefaultDisplay().getWidth(); taxWindow.showAtLocation(btn,Gravity.NO_GRAVITY,(screenWidth-taxWindowWidth)/2,location[1]+95); } }
弹出框的位置在触发控件下方居中,如果有明确的横纵坐标,可以用下面的来实现
taxWindow.showAsDropDown(anchor, xOffset, yOffset);
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22