1 // Temp is the root view that was found in the xml 2 final View temp = createViewFromTag(root, name, attrs,...
分类:
其他好文 时间:
2015-06-11 12:34:59
阅读次数:
150
用LayoutParams:可以设定控件的一些属性RelativeLayout insertLayout = (RelativeLayout)view1.findViewById(R.id.lay);//lay是一个RelativeLayout 布局的idImageView img = new Im...
分类:
移动开发 时间:
2015-06-09 21:23:56
阅读次数:
214
WindowManager 中LayoutParams的各种属性WindowManager.LayoutParams 是 WindowManager 接口的嵌套类(内部类);它继承于 ViewGroup.LayoutParams;它用于向WindowManager描述Window的管理策略。1.pu...
分类:
移动开发 时间:
2015-06-04 18:59:18
阅读次数:
349
(1)不设置Activity窗口不全屏,状态栏显示。(2)getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);Activity窗口全屏,...
分类:
其他好文 时间:
2015-06-04 18:46:26
阅读次数:
125
用LayoutParams:
RelativeLayout insertLayout = (RelativeLayout)view1.findViewById(R.id.screen);//screen是一个RelativeLayout 布局的id
ImageView imgApple2 = new ImageView(MainActivity.this);
imgA...
分类:
移动开发 时间:
2015-06-04 12:02:48
阅读次数:
1021
关于设置布局的宽高,比如线性布局的宽高 关于动态设置布局需要注意:如果给a布局设置宽高,那么a的父布局不能是别的类型,否则报类型转换异常比如给id为ll_c 的设置LayoutParams timeParams = (LayoutParams) ll_title_cust...
分类:
其他好文 时间:
2015-06-01 16:34:28
阅读次数:
132
一、键盘不消失,popuwindow在下层布局大小不变 popupWindow=new PopupWindow(popuview,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
// 需要设置一下此参数,点击外边可消失?
popupWindow.setBack...
//rl_pager 是RelativeLayout findViewById(R.id.rl_pager).setLayoutParams(new RelativeLayout.LayoutParams(width, width));当我这么设置layoutparams的时候报错了,原因:set....
分类:
其他好文 时间:
2015-05-27 20:49:47
阅读次数:
195
LinearLayout layout = (LinearLayout) mInflater.inflate( R.layout.cell_check_item, null); LinearLayout.LayoutParams param...
分类:
移动开发 时间:
2015-05-13 18:52:17
阅读次数:
472
Android透明状态栏只有在4.4之后有。
其中设置有两种方式:
1. if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
//透明状态栏
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT...
分类:
移动开发 时间:
2015-05-13 16:54:38
阅读次数:
189