效果图:调用WindowManager,并设置WindowManager.LayoutParams的相关属性,通过WindowManager的addView方法创建View,这样产生出来的View根据WindowManager.LayoutParams属性不同,效果也就不同了。比如创建系统顶级窗口,...
分类:
其他好文 时间:
2015-03-01 18:24:20
阅读次数:
144
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIF...
分类:
其他好文 时间:
2015-02-28 12:58:02
阅读次数:
130
// 保持Android设备屏幕灯长亮
public static void setScreenBright(Activity activity, boolean keepScreenOn) {
if (keepScreenOn) {
activity.getWindow().addFlags(
WindowManager.LayoutParams.FLAG_KEEP_SCR...
分类:
移动开发 时间:
2015-02-27 10:06:54
阅读次数:
154
WindowManager和WindowManager.LayoutParams的使用
分类:
移动开发 时间:
2015-02-25 22:15:00
阅读次数:
263
有个小需求, 编码头部驻留得item, 其中就用到了, 生成默认得layoutparams得东西, // read layout parameters ?? ??? AbsListView.LayoutParams layoutParams = (LayoutParams) pinnedView.getLayoutParams(...
分类:
其他好文 时间:
2015-02-13 11:54:41
阅读次数:
176
private void setDialogSize(Dialog dg) { Window dialogWindow = dg.getWindow(); WindowManager.LayoutParams lp = dialogWindow.getAttributes(); d...
分类:
移动开发 时间:
2015-02-13 11:27:43
阅读次数:
200
public void toggleFullscreen(boolean fullScreen)
{
//fullScreen为true时全屏,否则相反
WindowManager.LayoutParams attrs = getWindow().getAttributes();
if (fullScreen)
{
attrs...
分类:
移动开发 时间:
2015-02-12 22:54:22
阅读次数:
290
从mediaTek项目中移植出来的,完整的代码可以在我的GitHub上看到,下面看一下效果:
主Activity:
package com.zms.todo;
import java.util.Locale;
import android.app.ActionBar;
import android.app.ActionBar.LayoutParams;
import and...
分类:
移动开发 时间:
2015-02-11 10:59:02
阅读次数:
184
1、设置activity无标题,全屏// 设置为无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); // 设置为全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN...
分类:
移动开发 时间:
2015-02-09 10:39:02
阅读次数:
192
Dia dialog ; public void go(View view){ dialog = (Dia) getLayoutInflater().inflate(R.layout.main, null); LayoutParams param = new LayoutParams(Layo...
分类:
其他好文 时间:
2015-02-07 06:47:47
阅读次数:
206