首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

去掉标题栏跟系统栏代码实现以及动态设置密码

2012-08-31 
去掉标题栏和系统栏代码实现以及动态设置密码//Remove title bar?this.requestWindowFeature(Window.FEATU

去掉标题栏和系统栏代码实现以及动态设置密码

//Remove title bar?
this.requestWindowFeature(Window.FEATURE_NO_TITLE);?
?
//Remove notification bar?
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);?

?

当然还有xml实现那就比较简单了 直接用主题就好了

?

mEdit.setTransformationMethod(PasswordTransformationMethod.getInstance());?

?

?

?

热点排行