Android开发之禁止下拉通知栏的方法
程序员文章站
2023-12-20 23:33:22
本文实例讲述了android开发之禁止下拉通知栏的方法。分享给大家供大家参考,具体如下:
1.在androidmanifest.xml中添加权限
本文实例讲述了android开发之禁止下拉通知栏的方法。分享给大家供大家参考,具体如下:
1.在androidmanifest.xml中添加权限
<uses-permission android:name="android.permission.expand_status_bar"/> <uses-permission android:name="android.permission.status_bar"/>
2.在相应的activity中添加
@override public void onwindowfocuschanged(boolean hasfocus) { // todo auto-generated method stub super.onwindowfocuschanged(hasfocus); try { object service = getsystemservice("statusbar"); class<?> statusbarmanager = class.forname("android.app.statusbarmanager"); method test = statusbarmanager.getmethod("collapse"); test.invoke(service); } catch (exception ex) { ex.printstacktrace(); } }
希望本文所述对大家android程序设计有所帮助。