码迷,mamicode.com
首页 >  
搜索关键字:layoutparams    ( 276个结果
Android getWindow().setFlags方法
//设置窗体全屏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置窗体始终点亮getWindow().setFlags(Wi...
分类:移动开发   时间:2014-07-16 21:06:34    阅读次数:304
Android 中 LayoutParams 的用法
一个控件应当使用它的父控件的 LayoutParams 类型。因此,一个 TableVow 应该使用 TableLayout.Params 。所以,以一个 TableRow 为例: TableRow tableRow = new TableRow(context); ta...
分类:移动开发   时间:2014-07-16 17:36:33    阅读次数:225
Android学习笔记
设置全屏1、在onCreat方法中setContentView()之前插入requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCR...
分类:移动开发   时间:2014-07-14 00:40:35    阅读次数:336
TableLayout 里的TextView等组的LayoutParams参数问题
TableLayout 里的TextView等组的LayoutParams参数不能是LinearLayout.LayoutParams这样来定义,只能是用TableRow.LayoutParams代码如下: TableLayout.LayoutParams lpRow = new TableLayo...
分类:其他好文   时间:2014-07-13 13:27:18    阅读次数:215
TableLayout 中不显示动态添加的tableRow
下面的代码不显示:TableRow lay = new TableRow(layIndex.getContext()); lay.setLayoutParams(lpRow); //layIndex.addView(lay, new TableLayout.LayoutParams(Tabl...
分类:其他好文   时间:2014-07-13 13:23:04    阅读次数:285
Android使用WindowManager实现悬浮窗口
原文地址:http://www.3g-edu.org/news/art027.htm下面就介绍一下如何通过WindowManager来实现这个效果。通过WindowManager的addView()方法,并设置WindowManager.LayoutParams的相关属性,就可以往WindowMan...
分类:移动开发   时间:2014-07-11 10:51:27    阅读次数:287
android 窗体透明的,黑暗度等的设置技巧
设置透明度(这是窗体本身的透明度,非背景)1 WindowManager.LayoutParams lp=getWindow().getAttributes();2 lp.alpha=0.3f;3 getWindow().setAttributes(lp);alpha在0.0f到1.0f之间。1.0...
分类:移动开发   时间:2014-06-15 22:26:12    阅读次数:335
尽量理解xml 中LayoutParams的wrap_content, match_parent, 和具体值
概述:本文试图分析理解view 的measure 的过程,在分析过程中重点分析了LayoutParams 中MATCH_PARENT和MATCH_PARENT 的对应关系;onMeasure 默认值的计算过程;解释了onMeasure 接口中的注释中的问题,并提出一个问题:ViewRootImpl 是怎么创建的? 留作下篇引子。最后,讨论如何重写onMeasure()方法。 LayoutPara...
分类:其他好文   时间:2014-06-15 09:58:12    阅读次数:440
Dialog样式的Activity
效果图: 设置全屏模式: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.your_layout); getWindow().setLayout(LayoutParams....
分类:其他好文   时间:2014-06-10 17:31:09    阅读次数:232
LayoutParams
继承自:Object自身类型: 公共静态类 public static class子类:(各种布局).LayoutParams概述:Class OverviewLayoutParams are used by views to tell their parents how they want to ...
分类:其他好文   时间:2014-06-09 00:36:04    阅读次数:319
276条   上一页 1 ... 24 25 26 27 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!