#从service调用dialog ##需要权限 ##示例代码 Dialog dialog = new AlertDialog.Builder(ctx).create(); dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); dialog.show(); ##注意事项...
分类:
移动开发 时间:
2014-11-14 18:09:27
阅读次数:
207
http://www.xsmile.net/?p=538 调用WindowManager,并设置WindowManager.LayoutParams的相关属性,通过WindowManager的addView方法创建View,这样产生出来的View根据WindowManager.LayoutParam...
分类:
移动开发 时间:
2014-11-12 13:25:54
阅读次数:
173
public void setBrightness(int level) {
ContentResolver cr = getContentResolver();
Settings.System.putInt(cr, "screen_brightness", level);
Window window = getWindow();
LayoutParams attributes =...
分类:
移动开发 时间:
2014-11-11 14:25:07
阅读次数:
165
1.XML按钮定义显示:2.后台代码创建控件并注册事件import android.annotation.SuppressLint;import android.app.Activity;import android.app.ActionBar.LayoutParams;import android...
分类:
其他好文 时间:
2014-11-09 09:53:16
阅读次数:
261
// 去掉窗口标题requestWindowFeature(Window.FEATURE_NO_TITLE);// 全屏显示getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutPar...
分类:
移动开发 时间:
2014-11-08 23:24:47
阅读次数:
291
1.代码import android.annotation.SuppressLint;import android.app.Activity;import android.app.ActionBar.LayoutParams;import android.os.Bundle;import andro...
分类:
其他好文 时间:
2014-11-08 20:49:06
阅读次数:
247
以LinearLayout为例,分析addView()的过程,和对布局参数layout_width和layout_height的理解分析! 安卓新手基础加强。...
分类:
其他好文 时间:
2014-11-07 01:03:49
阅读次数:
319
1.首先要看下你要设置的这个组件的父容器是什么。比如我的是FrameLayout里面包含的一个组件。假如叫bottomLayout那么就是:
FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_...
分类:
移动开发 时间:
2014-10-29 17:05:31
阅读次数:
207
我们知道,在 RelativeLayout 布局中有很多特殊的属性,通常在载入布局之前,在相关的xml文件中进行静态设置即可。但是,在有些情况下,我们需要动态设置布局的属性,在不同的条件下设置不同的布局排列方式,这时候就需要用到RelativeLayout.LayoutParams.addRule(...
分类:
其他好文 时间:
2014-10-28 17:20:29
阅读次数:
157
注意,你要改变组件的部分,要在XML中将其设置为warp_content.比如
你如果要改变button宽度,在xml中就要将其layout_width设置为wrap_content
在代码中动态设置宽度是通过设置设置LayoutParams来达到效果的
ImageView pictureView = (ImageView) convertView.findViewById(R.id...
分类:
移动开发 时间:
2014-10-28 12:12:25
阅读次数:
245