09-09 10:19:59.979: E/AndroidRuntime(2767): FATAL EXCEPTION: main09-09 10:19:59.979: E/AndroidRuntime(2767): java.lang.ClassCastException: android.vie...
分类:
移动开发 时间:
2014-08-19 14:27:15
阅读次数:
363
//设置窗体全屏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置窗体始终点亮getWindow().setFlags(Wi...
分类:
移动开发 时间:
2014-08-16 19:38:20
阅读次数:
418
LinearLayout.LayoutParams lp = getLayoutParamsFromExit( (LayoutParams) this.getLayoutParams()); this.setLayoutParams(lp);如果是内部访问setLayoutParams,可以通过设置...
分类:
其他好文 时间:
2014-08-10 23:54:00
阅读次数:
349
requestWindowFeature(Window.FEATURE_NO_TITLE);getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCR...
分类:
移动开发 时间:
2014-07-30 20:29:54
阅读次数:
192
只需在程序中添加该句即可: getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
分类:
其他好文 时间:
2014-07-27 12:06:30
阅读次数:
183
View,ViewGroupsetXXX(),getXXX()LayoutParams常用的View、ViewGroup、ViewGroup.LayoutParams、Event Listeners、Event Handlers、Touch ModeAnimationAndroid常用的Action...
分类:
移动开发 时间:
2014-07-24 21:17:23
阅读次数:
259
看了android的源代码和资源文件,终于明白如何去修改设置Dialog和Activity的进入和退出效果了。设置Dialog首先通过getWindow()方法获取它的窗口,然后通过getAttributes()方法获得window的WindowManager.LayoutParams lp,lp有...
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
WindowManager.LayoutParams params = dialog.getWindow().getAttributes();
params.width = 200;
params.height = 200 ;
dialog....
分类:
其他好文 时间:
2014-07-22 08:25:36
阅读次数:
176
写Android程序的时候一般用WindowManager就是去获得屏幕的宽和高,来布局一些小的东西。基本上没有怎么看他的其他的接口。这两天想写一个简单的类似于Toast的东西,自定义布局,突然发现,原来Toast的时间是不能自己定义的,只有两个固定的时间,分别是2秒和3.5秒。我的需求是自定义显示...
TextView textView= (TextView)findViewById(R.id.textview); LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) textView.getLayoutPara.....
分类:
移动开发 时间:
2014-07-20 22:30:37
阅读次数:
320