Popupwindow 的简单实用案例(显示在控件下方)

Popupwindow 的简单实用案例(显示在控件下方),第1张

概述第一步:privatePopupWindowmPopupWindow;第二步:写一个popupwindow的布局文件XML<?xmlversion=\"1.0\"encoding=\"utf-8\"?>

第一步:

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键都无法dismissd框    // 我觉得这里是API的一个BUG    popupWindow.setBackgroundDrawable(getResources().getDrawable(        R.mipmap.ic_launcher));    // 设置好参数之后再show    popupWindow.showAsDropDown(v);  }

注:

若在Activity的onCreate()方法中直接写d出PopupWindow()方法报错,因为Activity没有完全启动是不能d出PopupWindow的,那我们只需要在Activity完全启动后在d出PopupWindow就行了。

重写一下onWindowFocusChanged()方法:

@OverrIDepublic voID onWindowFocusChanged(boolean hasFocus) {  super.onWindowFocusChanged(hasFocus);  //d出PopupWindow的具体代码}

以上这篇Popupwindow 的简单实用案例(显示控件下方)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Popupwindow 的简单实用案例(显示在控件下方)全部内容,希望文章能够帮你解决Popupwindow 的简单实用案例(显示在控件下方)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146375.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存