服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android使用popUpWindow带遮罩层的弹出框

Android使用popUpWindow带遮罩层的弹出框

2022-08-14 11:36Fairy_1126 Android

这篇文章主要为大家详细介绍了Android使用popUpWindow带遮罩层的弹出框,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

上次项目中实现了新功能,就一直想添加到博客里来着,惰性发作起来简直太可怕,不说了,跟着一起写吧,三步即可实现简单的弹出框功能,首先看效果——

Android使用popUpWindow带遮罩层的弹出框

首先:主页面布局,触发控件一定要有,再有就是给根标签设置id

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/layout"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.example.android_popupwindow.MainActivity" >
 <ScrollView
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:scrollbars="none">
  <RelativeLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content">
   <ImageView
    android:id="@+id/p"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scaleType="centerCrop"
    android:src="@drawable/p"/>
   <ImageView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/p"
    android:scaleType="centerCrop"
    android:src="@drawable/p"/>
  <Button
    android:id="@+id/btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="click me"
    android:background="#fff"
    android:padding="10dip"/>
  </RelativeLayout>
 </ScrollView>
</RelativeLayout>

第二步:弹出框样式设置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 tools:context="com.example.adf.MainActivity" >
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:text="交友需带三分侠气,做人要存一点素心\n —《菜根谭》"
  android:textColor="#000"
  android:background="@drawable/layout_border" />
</LinearLayout>

最后:就是主代码了

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
    <span style="white-space:pre"> </span>showTaxDetail(v);
   tv=new TextView(MainActivity.this);
    <span style="white-space:pre"> </span>tv.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,ViewGroup.LayoutParams.FILL_PARENT));
    <span style="white-space:pre"> </span>tv.setBackgroundColor(Color.parseColor("#66000000"));
    <span style="white-space:pre"> </span>tv.setClickable(true);
    <span style="white-space:pre"> </span>tv.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  isFold=true;
    taxWindow.dismiss();
    layout.removeView(tv);
  }
 });
    <span style="white-space:pre"> </span>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);
 }
}

弹出框的位置在触发控件下方居中,如果有明确的横纵坐标,可以用下面的来实现

?
1
taxWindow.showAsDropDown(anchor, xOffset, yOffset);

好了,这样就实现了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/Fairy_1126/article/details/51602293?utm_source=blogxgwz8

延伸 · 阅读

精彩推荐