码迷,mamicode.com
首页 >  
搜索关键字:layoutparams    ( 276个结果
LayoutInflater inflate LayoutParams 简介
LayoutInflater简介LayoutInflater就是布局填充器,作用是将xml布局文件转化为View对象。可以通过以下两种方式获取LayoutInflater,其实他们是完全一样的LayoutInflater layoutInflater = LayoutInflater.from(co... ...
分类:其他好文   时间:2017-02-22 22:58:40    阅读次数:362
activity 窗口样式
activity 窗口样式 继承@android:style/Theme.Dialog , Window win = this.getWindow();win.getDecorView().setPadding(0, 0, 0, 0);WindowManager.LayoutParams lp = ...
分类:其他好文   时间:2017-02-19 15:52:07    阅读次数:170
自定义吐司来电显示
private final WindowManager.LayoutParams mParams = new WindowManager.LayoutParams(); public void showToast(String incomingNumber) { final WindowManage... ...
分类:其他好文   时间:2017-01-26 01:05:43    阅读次数:180
PopupWindow 的使用
//contentView : 气泡显示的内容 //width ,height : 宽高 PopupWindow popupWindow = new PopupWindow(contentView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTE... ...
分类:Windows程序   时间:2017-01-16 07:28:37    阅读次数:232
[Android] 转-LayoutInflater丢失View的LayoutParams
原文地址:http://lmbj.net/blog/layoutinflater-and-layoutparams/ View view = inflater.inflate(R.layout.item, null); 在使用类似以上方法获取view时会遇到的一个问题就是布局文件中定义的Layout ...
分类:移动开发   时间:2016-11-19 12:39:54    阅读次数:190
Android 登录界面与首页的设计
全屏效果 //取消标题,取消状态栏 this.requestWindowFeature(Window.FEATURE_NO_TITLE); this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManag ...
分类:移动开发   时间:2016-11-14 17:45:59    阅读次数:234
Activity 参数设置
//去标题栏(在onCreate中) requestWindowFeature(Window.FEATURE_NO_TITLE); //设置全屏(在onCreate中) getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,  ...
分类:其他好文   时间:2016-11-03 13:21:10    阅读次数:183
android安卓动态设置控件宽高
LayoutParamslayoutParams=p_w_picpathView.getLayoutParams(); layoutParams.width=100;layoutParams.height=200; p_w_picpathView.setLayoutParams(layoutParams);
分类:移动开发   时间:2016-10-10 16:53:14    阅读次数:167
Android中measure过程、WRAP_CONTENT详解以及xml布局文件解析流程浅析(下
本文原创, 转载请注明出处:http://blog.csdn.net/qinjuning 上篇文章>中,我们 了解了View树的转换过程以及如何设置View的LayoutParams的。本文继续沿着既定轨迹继... ...
分类:移动开发   时间:2016-10-02 13:05:27    阅读次数:303
Android—PopupWindow的简单使用
1:实例化PopupWindow的对象,三个参数分别对应:填充的布局文件、在当前Activity上所占的宽、高 PopupWindow popupWindow= new PopupWindow(contentView, LayoutParams.FILL_PARENT, LayoutParams.W... ...
分类:移动开发   时间:2016-09-26 20:02:59    阅读次数:193
276条   上一页 1 2 3 4 5 6 ... 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!