时间:2021-05-20
第一步:
private PopupWindow mPopupWindow;
第二步:写一个popupwindow的布局文件XML
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#669E9E9E"><LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:background="#E4E4E4" > <TextView android:id="@+id/popupwindow_Jan" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="一月份" android:gravity="center" /> <TextView android:id="@+id/popupwindow_Feb" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="二月份" android:gravity="center" /> <TextView android:id="@+id/popupwindow_Mar" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="三月份" android:gravity="center" /></LinearLayout> </RelativeLayout></LinearLayout>第三步:在Activity写代码
public void onClick(View v) { switch (v.getId()) { case R.id.home_travel_modes_yuefen_textview: showPopupWindow(v); break; case R.id.popupwindow_Jan: showToastMsg("一月份"); break; case R.id.popupwindow_Feb: showToastMsg("二月份"); break; default: break; } public void showPopupWindow(View v){ View contentView = LayoutInflater.from(HomeTravelModesActivity.this).inflate(R.layout.home_popuplayout, null); TextView JanText = (TextView)contentView.findViewById(R.id.popupwindow_Jan); TextView FebText = (TextView)contentView.findViewById(R.id.popupwindow_Feb); TextView MarText = (TextView)contentView.findViewById(R.id.popupwindow_Mar); JanText.setOnClickListener(this); FebText.setOnClickListener(this); MarText.setOnClickListener(this); final PopupWindow popupWindow = new PopupWindow(contentView, LinearLayout.LayoutParams.MATCH_PARENT, 300, true); popupWindow.setTouchable(true);// popupWindow.setTouchInterceptor(new View.OnTouchListener() {//// @Override// public boolean onTouch(View v, MotionEvent event) {//// Log.i("mengdd", "onTouch : ");//// return false;// // 这里如果返回true的话,touch事件将被拦截// // 拦截后 PopupWindow的onTouchEvent不被调用,这样点击外部区域无法dismiss// }// }); // 如果不设置PopupWindow的背景,无论是点击外部区域还是Back键都无法dismiss弹框 // 我觉得这里是API的一个bug popupWindow.setBackgroundDrawable(getResources().getDrawable( R.mipmap.ic_launcher)); // 设置好参数之后再show popupWindow.showAsDropDown(v); }注:
若在Activity的onCreate()方法中直接写弹出PopupWindow()方法报错,因为Activity没有完全启动是不能弹出PopupWindow的,那我们只需要在Activity完全启动后在弹出PopupWindow就行了。
重写一下onWindowFocusChanged()方法:
@Overridepublic void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); //弹出PopupWindow的具体代码}以上这篇Popupwindow 的简单实用案例(显示在控件下方)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
此篇博客实现的功能是:点击界面中的图片,跳出一个PopupWindow,PopupWindow中含有相应的文字和图标,并且在显示PopupWindow的时候,背
本文主要针对WinForm的延迟加载在常用控件的实现做简单的描述。在进行C#项目开发的时候具有一定的实用性。具体如下:一、在界面第一次显示时加载。最简单的延迟加
PyQt5菜单栏控件QMenuBar介绍QMenuBar在QMainWindow对象的标题栏下方,水平的QMenuBar被保留显示QMenu对象QMenuBar
说到PopupWindow,应该都会有种熟悉的感觉,使用起来也很简单//一个自定义的布局,作为显示的内容Contextcontext=null; //真实环境
本文实例讲述了Android编程之PopupWindow隐藏及显示方法。分享给大家供大家参考,具体如下:前面分析了PopupWindow的用法(位置、动画、焦点