Heim  >  Fragen und Antworten  >  Hauptteil

Android PopupWindow 问题。

需求是点击popupwindow 外部,popupwindow不消失。目前 Android 6.0 以下的系统均没问题,但是6.0的系统上面点击popupwindow外部以后popupwindow 消失。哪位大佬知道的说下哦。

同时一并问下6.0系统中使用 ContextCompat.checkSelfPermission 同时检查 读,写联系人权限如何实现?

巴扎黑巴扎黑2717 Tage vor623

Antworte allen(3)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-04-17 17:56:55

    popupWindow.setFocusable(false);
    popupWindow.setTouchable(true);
    popupWindow.setBackgroundDrawable(new BitmapDrawable());
    popupWindow.setOutsideTouchable(false);
    popupWindow.update();

    我试了下,貌似有效果

    Antwort
    0
  • PHP中文网

    PHP中文网2017-04-17 17:56:55

    When window touchable is true, focusable is false,
    setOutsideTouchable() works.

    pw.setTouchable(true);    
    pw.setFocusable(false);    
    pw.setOutsideTouchable(false);
    
    
    记得给我加分哦!!!thx!

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 17:56:55

    检查权限:
    读权限:
    ContextCompat.checkSelfPermission(mContext, Manifest.permission.READ_CONTACTS) == PackageManager.PERMISSION_GRANTED;
    写权限:
    ContextCompat.checkSelfPermission(mContext, Manifest.permission.WRITE_CONTACTS) == PackageManager.PERMISSION_GRANTED;
    判断时添加&&用于判断两个条件是否return true
    请求权限:
    第一步:String[] permissions = {Manifest.permission.READ_CONTACTS,Manifest.permission.WRITE_CONTACTS}
    第二步:ActivityCompat.requestPermissions(activity, permissions,requestCode);
    

    Antwort
    0
  • StornierenAntwort