E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
getAttributes
Android 自定义对话框(控制大小、位置)
newDisplayMetrics(); context.getWindowManager().getDefaultDisplay().getMetrics(dm); LayoutParamsp=getWindow().
getAttributes
daijin888888
·
2016-01-21 10:00
android
自定义对话框
Android编程调节屏幕亮度(背景灯)及保持背景灯常亮的方法
写的应用程序其实可以调节屏幕亮度的,查了一下资料发现WindowManager.LayoutParams这个类就包含了调节亮度的参数:WindowManager.LayoutParamslp=getWindow().
getAttributes
zqiang_55
·
2016-01-21 08:48
android dialog宽度无法填满屏幕解决方案
Windowwin=dialog.getWindow();win.getDecorView().setPadding(0,0,0,0);WindowManager.LayoutParamslp=win.
getAttributes
业余选手
·
2016-01-19 11:56
Android>>LayOut
C#删除只读文件或文件夹(解决File.Delete无法删除文件)
引用:http://www.jb51.net/article/72181.htmC#删除只读文件的方法:if(File.
GetAttributes
(FFName).ToString().IndexOf(
姜大伟
·
2016-01-13 10:00
动态改变dialog对话框大小
dlg,Context ctx){ Window window = dlg.getWindow(); WindowManager.LayoutParams lp = window.
getAttributes
671076656
·
2016-01-11 13:27
大小
dialog
对话框
动态改变dialog对话框大小
Dialog dlg,Context ctx){ Window window = dlg.getWindow(); WindowManager.LayoutParams lp = window.
getAttributes
671076656
·
2016-01-11 13:27
大小
dialog
对话框
android开发
pop 背景的变暗
@parambgAlpha */ publicvoidbackgroundAlpha(floatbgAlpha) { WindowManager.LayoutParamslp=getWindow().
getAttributes
aicpzl
·
2016-01-04 12:00
从底部弹起铺满的对话框
transparent true 对话框onCreated中WindowdialogWindow=getWindow(); WindowManager.LayoutParamslp=dialogWindow.
getAttributes
我是一颗小草
·
2015-12-16 18:00
FragmentDialog设置进入和退出动画
@anim/in_from_right@anim/out_to_left3、然后在FragmentDialog的onActivityCreated中调用getDialog().getWindow().
getAttributes
Greasonguo
·
2015-12-13 12:26
android
genymotion的坑
//0.0-1.0 publicvoidbackgroundAlpha(floatbgAlpha) { WindowManager.LayoutParamslp=getWindow().
getAttributes
zhengdan66
·
2015-11-30 01:00
任意时刻、任意代码处全屏
publicvoidtoggleFullscreen(booleanfullScreen) { //fullScreen为true时全屏,否则相反 WindowManager.LayoutParamsattrs=getWindow().
getAttributes
Ke1vin
·
2015-11-20 18:00
c# 判断ini文件是否为只读,并设置为可写
path = Application.StartupPath + "\\setup.ini"; //获取文件路径 获取文件是否只读 FileAttributes att=File.
GetAttributes
·
2015-11-13 14:48
ini
android 应用级别 亮度调节
; WindowManager.LayoutParams localLayoutParams = localWindow.
getAttributes
·
2015-11-12 14:58
android
Activity的退出和進入效果
设置Dialog首先通过 getWindow()方法获取它的窗口,然后通过
getAttributes
()方法获得window的 WindowManager.LayoutParams lp, lp有个公共属性
·
2015-11-12 12:18
Activity
htmlcleaner
node.evaluateXPath(xpath); for (Object obj : myNodes) { TagNode node = (TagNode) obj; // System.out.println(node.
getAttributes
·
2015-11-12 11:48
html
Android 改变AlertDialog的大小
AlertDialog.Builder(this).create(); 3 dialog.show(); 4 WindowManager.LayoutParams params = dialog.getWindow().
getAttributes
·
2015-11-11 12:32
AlertDialog
自定义Window进入和退出效果
设置Dialog首先通过getWindow()方法获取它的窗口, 然后通过
getAttributes
()方法获得window的WindowManager.LayoutParams lp,  
·
2015-11-08 10:13
window
实现半透明的popupwindow的源码
:1.设置半透明主题2.设置window的alpha值 // WindowManager.LayoutParams lp = getWindow().
getAttributes
·
2015-11-02 11:46
PopupWindow
在ASP.NET去掉文件的只读属性
SetAttributes 方法为一个文件设置相关的属性,如: // 为文件加上一个只读的属性 FileAttributes attrs = File.
GetAttributes
·
2015-11-02 09:14
asp.net
Android 调节当前Activity的屏幕亮度
调节的关键代码: WindowManager.LayoutParams layoutParams = getWindow().
getAttributes
();
·
2015-11-01 10:46
Activity
Android 设定Activity的进入和退出效果
设置Dialog首先通过 getWindow()方法获取它的窗口,然后通过
getAttributes
()方法获得window的 WindowManager.LayoutParams lp, lp有个公共属性
·
2015-10-31 13:55
Activity
C#改变文件属性
File.Exists(path)) 4 { 5 File.Create(path); 6 } 7 if((File.
GetAttributes
(path)&
·
2015-10-31 11:01
C#
利用 File.
GetAttributes
返回值时遇到的小插曲
今天写了段下载文件的代码,由于一些文件是只读属性,因此需要 File.
GetAttributes
来判断其属性并更改,于是直接写了 if(File.
GetAttributes
(Server.MapPath
·
2015-10-31 09:40
attribute
ProgressDialog弹出时的底色变暗
在网上搜索时,看到的方法多数是: 方法一 :在代码中 可以这么设置 Window mWindow = getWindow(); WindowManager.LayoutParams lp = mWindow.
getAttributes
·
2015-10-27 15:34
ProgressDialog
android开发设置dialog的高宽
这里设置为跟屏幕一样的宽度,:看代码 dlg.show(); WindowManager.LayoutParams params = dlg.getWindow().
getAttributes
·
2015-10-23 08:39
Android开发
设置当前Activity的屏幕亮度
直接看代码好了 Java代码 WindowManager.LayoutParams lp = getWindow().
getAttributes
·
2015-10-21 11:52
Activity
Android 功能代码总结
Displaydisplay=windowManager.getDefaultDisplay(); WindowManager.LayoutParamslp=dialogPhoto.getWindow().
getAttributes
womengmengyan
·
2015-10-14 20:00
android
对话框
iOS runtime方法详解之属性操作
Class cls, const char *name );描述:返回给定类的指定名称的属性的描述信息;返回的objc_property_t类型的内容通过property_getName,property_
getAttributes
junjun150013652
·
2015-09-21 10:00
Runtime
android 透明的activity
主要代码:Windowwindow=getWindow(); WindowManager.LayoutParamswl=window.
getAttributes
(); wl.flags=WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
yiranhaiziqi
·
2015-09-18 11:00
activity设置成dialog后,再设定其显示位置和高宽
Display d = m.getDefaultDisplay(); //为获取屏幕宽、高 LayoutParams p = getWindow().
getAttributes
zd78978971
·
2015-09-14 16:26
透明度
Activity
dialog
样式
对话框
通过OC运行时(runtime)获得类的属性列表
最近一段时间在研究OC的运行时机制,碰到一个叫property_
getAttributes
函数,再此对其用法进行简单的总结。
zlayne
·
2015-08-12 13:22
通过OC运行时(runtime)获得类的属性列表
最近一段时间在研究OC的运行时机制,碰到一个叫property_
getAttributes
函数,再此对其用法进行简单的总结。
zlayne
·
2015-08-12 13:22
笔记
随意改变Dialog大小与位置
Context ctx){ Window window = dialog.getWindow(); WindowManager.LayoutParams lp = window.
getAttributes
kun5069073
·
2015-07-27 19:00
dialog
android调节屏幕亮度
系统设定)、0.0(暗)~1.0(亮) ※调用处理的地方,例如, Activity.onCreate()等等代码:WindowManager.LayoutParams lp = getWindow().
getAttributes
·
2015-07-22 14:00
android
java.lang.ClassCastException: org.restlet.data.Parameter cannot be cast to org.r
org.restlet.data.Parameter cannot be cast to org.restlet.engine.header 原因: The object returned by Response/Request.
getAttributes
javadaydayup
·
2015-07-22 13:00
Restlet
headers
android window
quit.show(); WindowManager.LayoutParamsparams0=quit.getWindow().
getAttributes
();params0.
liauau
·
2015-07-20 19:00
Dialog顶层显示及更改位置
this.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); LayoutParamslp=this.getWindow().
getAttributes
kakaxi1o1
·
2015-07-09 16:00
VC++:结合设备安装类GUID和设备接口类GUID获取设备VIDPID
获取设备VID和PID的一般流程是通过设备接口类GUID创建设备信息集,然后从设备接口详细信息中获取设备路径,再调用HidD_
GetAttributes
从属性中读取VID和PID。
陈国成
·
2015-07-06 10:30
加密
接口
源代码
检测
详细信息
VC++:结合设备安装类GUID和设备接口类GUID获取设备VIDPID
获取设备VID和PID的一般流程是通过设备接口类GUID创建设备信息集,然后从设备接口详细信息中获取设备路径,再调用HidD_
GetAttributes
从属性中读取VID和PID。
陈国成
·
2015-07-06 10:30
加密
接口
源代码
检测
详细信息
DialogFragment设置自定义动画
getDialog().getWindow().
getAttributes
().windowAnimations=R.style.CustomDialog; @android:color/white false
zhuhai__yizhi
·
2015-07-01 16:00
DialogFragment如何设置大小和位置
setGravity(Gravity.CENTER_HORIZONTAL|Gravity.BOTTOM); WindowManager.LayoutParamslp=getDialog().getWindow().
getAttributes
zhuhai__yizhi
·
2015-07-01 16:00
popwind 如何使背景变暗
//设置背景颜色变暗 //WindowManager.LayoutParamslp=getWindow().
getAttributes
(); lp.alpha
aicpzl
·
2015-06-01 10:00
Dialog实现背景虚化了
; Windowwindow=protocolDialog.getWindow(); WindowManager.LayoutParamslp=protocolDialog.getWindow().
getAttributes
liuchangwen66101
·
2015-05-11 11:00
android调节屏幕亮度
默认小于0(系统设定)、0.0(暗)~1.0(亮)※调用处理的地方,例如,Activity.onCreate()等等代码:WindowManager.LayoutParamslp=getWindow().
getAttributes
q617610589
·
2015-04-15 09:00
android
屏幕亮度调节
adf常用方法总结
onSelect(ValueChangeEventvalueChangeEvent){ Numberid=(Number)valueChangeEvent.getComponent().
getAttributes
evilcry2012
·
2015-04-02 13:00
android PopupWindow的使用
设置popupWindow的背景为60%透明 Windowwindow =activity.getWindow(); WindowManager.LayoutParamslp=window.
getAttributes
lyy201109210
·
2015-03-06 14:17
android
PopupWindow
Android任意时刻、任意代码处全屏
publicvoidtoggleFullscreen(booleanfullScreen) { //fullScreen为true时全屏,否则相反 WindowManager.LayoutParamsattrs=getWindow().
getAttributes
zhangphil
·
2015-02-12 20:00
android
it
android dialog和activity 改变出现消失的 动画样式
newDialog(this); dialog.show(); Windowwindow=dialog.getWindow(); WindowManager.LayoutParamslp=window.
getAttributes
wanghao200906
·
2014-11-24 16:00
android
自定义跳转样式
android 调节屏幕亮度
Settings.System.putInt(cr,"screen_brightness",level); Windowwindow=getWindow(); LayoutParamsattributes=window.
getAttributes
u014600432
·
2014-11-11 14:00
android
Android实现dialog时候弹出软键盘dialog移位问题
Windowwin=getWindow(); WindowManager.LayoutParamsparams=win.
getAttributes
(); win.setSoftInputMode(params.SOFT_INPUT_ADJUST_NOTHING
清风拂人
·
2014-11-06 09:00
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他