Android使用popUpWindow帶遮罩層的彈出框
上次項(xiàng)目中實(shí)現(xiàn)了新功能,就一直想添加到博客里來(lái)著,惰性發(fā)作起來(lái)簡(jiǎn)直太可怕,不說(shuō)了,跟著一起寫(xiě)吧,三步即可實(shí)現(xiàn)簡(jiǎn)單的彈出框功能,首先看效果——

首先:主頁(yè)面布局,觸發(fā)控件一定要有,再有就是給根標(biāo)簽設(shè)置id
<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>
第二步:彈出框樣式設(shè)置
<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="交友需帶三分俠氣,做人要存一點(diǎn)素心\n —《菜根譚》" android:textColor="#000" android:background="@drawable/layout_border" /> </LinearLayout>
最后:就是主代碼了
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];
// 得到按鈕控件的坐標(biāo),便于定位彈出框位置
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);
}
}
彈出框的位置在觸發(fā)控件下方居中,如果有明確的橫縱坐標(biāo),可以用下面的來(lái)實(shí)現(xiàn)
taxWindow.showAsDropDown(anchor, xOffset, yOffset);
好了,這樣就實(shí)現(xiàn)了。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android 進(jìn)度條顯示在標(biāo)題欄的實(shí)現(xiàn)方法
android進(jìn)度條顯示在標(biāo)題欄的實(shí)現(xiàn)方法,大概分文xml文件和java文件,具體代碼內(nèi)容大家可以通過(guò)本文學(xué)習(xí)下2017-01-01
Android通過(guò)代碼控制ListView上下滾動(dòng)的方法
今天小編就為大家分享一篇關(guān)于Android通過(guò)代碼控制ListView上下滾動(dòng)的方法,小編覺(jué)得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧2018-12-12
Android 仿蘋(píng)果IOS6開(kāi)關(guān)按鈕
這篇文章主要介紹了Android 仿蘋(píng)果IOS6開(kāi)關(guān)按鈕的實(shí)現(xiàn)代碼,代碼簡(jiǎn)單易懂非常不錯(cuò)具有參考借鑒價(jià)值,需要的朋友可以參考下2016-10-10
Android scrollToTop實(shí)現(xiàn)點(diǎn)擊回到頂部(兼容PullTorefreshScrollview)
當(dāng)頁(yè)面滑動(dòng)到底部,出現(xiàn)回到頂部的按鈕相信對(duì)大家來(lái)說(shuō)并不陌生,下面這篇文章主要介紹了關(guān)于Android scrollToTop實(shí)現(xiàn)點(diǎn)擊回到頂部,并兼容PullTorefreshScrollview的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考借鑒。2017-03-03
Android Camera是否支持變焦的判斷方法總結(jié)
這篇文章主要介紹了Android Camera是否支持變焦的判斷方法總結(jié),本文總結(jié)了調(diào)節(jié)攝像頭焦距編程中遇到的一些問(wèn)題和解決方法,需要的朋友可以參考下2015-04-04
Android自定義View實(shí)現(xiàn)直播點(diǎn)贊特效
這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)直播點(diǎn)贊特效,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-07-07
Android實(shí)現(xiàn)關(guān)機(jī)后數(shù)據(jù)不會(huì)丟失問(wèn)題
這篇文章主要介紹了Android實(shí)現(xiàn)關(guān)機(jī)后數(shù)據(jù)不會(huì)丟失問(wèn)題,本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-10-10

