网上又不少方法,均告失败,最终找到以下的方法:// 隐藏系统键盘 public void hideSoftInputMethod(EditText ed) { getWindow().setSoftInputMode( WindowManager.L...
分类:
移动开发 时间:
2015-01-24 20:04:52
阅读次数:
120
Android的应用程序很多渠道都分类为: 应用和游戏两大类;
在界面设计上,小编自己有如下体会
1. 对于应用类的APP尽量不使用下面的全屏:
public void onCreate(Bundle savedInstanceState) {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowM...
分类:
移动开发 时间:
2015-01-23 16:20:44
阅读次数:
136
android service Dialog 弹出框 相信大家第一次在Service中实现 AlertDialog 弹出框时,都会遇到应用闪退然后报出这个异常:Caused by: android.view.WindowManager$BadTokenException: 下面说下为什么出现这个.....
分类:
移动开发 时间:
2015-01-23 16:12:04
阅读次数:
160
今天在帮同学实现一个PopupWindow嵌套PopupWindow时报了异常,导致第二个POP不能显示:android.view.WindowManager$BadTokenException:Unabletoaddwindow--tokenandroid.view.ViewRootImpl$W@4340e618isnotvalid;isyouractivityrunning?先贴代码:volleytest_lay.xml,pop_first..
需要做一个弹出窗或者遮罩层,我们一般有以下几种思路。
1、AlertDialog对话框
2、PopupWindow弹出窗
3、WindowManager动态添加View到当前页面
4、打开另外一个Activity
下面分别给出这几种方法的实现栗子。
一、AlertDialog
适合需要用户做出选择,或者确认的弹出小窗
AlertDialo...
分类:
移动开发 时间:
2015-01-12 19:22:18
阅读次数:
262
1、//在onCreat方法中setContentView()之前插入requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREE...
分类:
移动开发 时间:
2015-01-12 12:47:29
阅读次数:
164
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
//该方法黑屏
//this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
//该方法背景透明
this....
分类:
移动开发 时间:
2015-01-12 11:03:29
阅读次数:
169
在创建好AlertDialog类型对象后,要dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); 同时还要设置权限 这样后就可dialog.show()了,要不然容易报错
分类:
移动开发 时间:
2015-01-09 14:08:41
阅读次数:
214
在总结锁屏代码之前,有两个中心思想要铭记于心
A) KeyguardHostView就是我们最终所要展示的界面,所以不论用什么方法手段,都要将这个KeyguardHostView添加到窗口中,后续填充它,都是细节问题
B) 那么问题来了,通常我们将一个view添加到窗口中会用什么方法呢?
答案有两种 1 WindowManager.addView() 2 Layout...
分类:
移动开发 时间:
2015-01-08 18:13:30
阅读次数:
294
对于EditText可以设置setInputType(InputType.TYPE_NULL);输入法就不会弹出。需要的时候在动态设置InputTyep.如果一加载Activity可以用getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);隐藏输入法,就不用判断焦点了。o(∩_∩)o如果..
分类:
移动开发 时间:
2015-01-08 15:41:54
阅读次数:
188