try {
Field windowManagerField = PopupWindow.class.getDeclaredField("mWindowManager");
windowManagerField.setAccessible(true);
final Object o = windowManagerField.get(mPreviewPopup);
Object windowManagerProy = Proxy.newProxyInstance(Handler.class.getClassLoader(), new Class[]{WindowManager.class}, new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// if( public void addView(View view, ViewGroup.LayoutParams params);)
if (method.getName().equals("addView") && args.length == 2) {
PopupWrapper.this.mDecorView = args[0];
PopupWrapper.this.mWindowParams = (WindowManager.LayoutParams) args[1];
PopupWrapper.this.screenShot(mSafeEditView.isDisableCatupreScreen());
}
return method.invoke(o, args);
}
});
windowManagerField.set(mPreviewPopup, windowManagerProy);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
public void screenShot(boolean disableCapture) {
if (disableCapture) {
addFlags(WindowManager.LayoutParams.FLAG_SECURE);
} else {
clearFlags(WindowManager.LayoutParams.FLAG_SECURE);//避免導致 吧activity的防止截屏給取消了傍衡。理論上 activity設置就ok了例朱。
}
}
public WindowManager.LayoutParams getAttributes() {
return mWindowParams;
}
public void clearFlags(int flags) {
setFlags(0, flags);
}
public void setFlags(int flags, int mask) {
final WindowManager.LayoutParams attrs = getAttributes();
if (attrs == null) {
return;
}
attrs.flags = (attrs.flags & ~mask) | (flags & mask);
}
public void addFlags(int flags) {
setFlags(flags, flags);
}
[原創(chuàng)]android利用反射禁止popwindow 截屏 (做鍵盤開發(fā))
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來汹碱,“玉大人粘衬,你說我怎么就攤上這事。” “怎么了稚新?”我有些...
- 文/不壞的土叔 我叫張陵泼舱,是天一觀的道長。 經(jīng)常有香客問我枷莉,道長,這世上最難降的妖魔是什么尺迂? 我笑而不...
- 正文 為了忘掉前任笤妙,我火速辦了婚禮,結果婚禮上噪裕,老公的妹妹穿的比我還像新娘蹲盘。我一直安慰自己,他們只是感情好膳音,可當我...
- 文/花漫 我一把揭開白布召衔。 她就那樣靜靜地躺著,像睡著了一般祭陷。 火紅的嫁衣襯著肌膚如雪苍凛。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼惭适,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了楼镐?” 一聲冷哼從身側響起癞志,我...
- 正文 年R本政府宣布,位于F島的核電站仍稀,受9級特大地震影響洼滚,放射性物質發(fā)生泄漏。R本人自食惡果不足惜技潘,卻給世界環(huán)境...
- 文/蒙蒙 一遥巴、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧享幽,春花似錦铲掐、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至奔坟,卻和暖如春携栋,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背咳秉。 一陣腳步聲響...
推薦閱讀更多精彩內容
- 特殊的需求造就特殊的功能 有的付費頁面是不能讓用戶截屏分享的,所以...我們就流氓的攔截掉并且刪除 實現(xiàn)方式 1,...
- Android截屏的原理:獲取具體需要截屏的區(qū)域的Bitmap,然后繪制在畫布上舞箍,保存為圖片后進行分享或者其它用途...
- 禁止截屏的實現(xiàn)方式并不是很難舰褪,在需要設置禁止截屏的 Activity 的生命周期onCreate()方法中添加一行...
- 前言:在寫博客或者傳項目到github上時放上一張gif圖片更能表達出作者想要表達的內容,那么怎樣可以方便的錄制一...