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
c# 让文件只读
usingSystem.IO;publicstaticvoidSetFileReadOnly(stringfilePath){//获取文件的当前属性FileAttributesattributes=File.
GetAttributes
wangyue4
·
2024-01-01 11:13
c#
开发语言
android dialog 关闭动画效果,android设置dialog显示和activity进入退出的动画效果
设置Dialog首先通过getWindow()方法获取它的窗口,然后通过
getAttributes
()方法获得window的WindowManager.LayoutParamslp,lp有个公共属性windowAnimations
Sim-CH
·
2023-11-10 03:31
android
dialog
关闭动画效果
Tools(工具类)(二)
publicstaticvoidsetBackLight(Activityactivity,intvalue){try{WindowManager.LayoutParamslp=activity.getWindow().
getAttributes
沈溺_16e5
·
2023-10-21 00:41
Android 隐藏底部导航栏和状态栏,动态调用导航栏,键盘收回时也收回导航栏
privatevoidhideNavigationBar(){Windowwindow=getWindow();WindowManager.LayoutParamsparams=window.
getAttributes
D___Will
·
2023-10-13 08:39
【笔记】沉浸式状态栏(修改状态栏背景颜色)
Activity如下:WindowManager.LayoutParamslocalLayoutParams=getWindow().
getAttributes
();localLayoutParams.flags
我是MTT
·
2023-10-13 06:40
Android 系统背光设置
修改当前Activity界面的窗口亮度privatevoidsetScreenLight(intbrightness){WindowManager.LayoutParamslp=getWindow().
getAttributes
虫师魁拔
·
2023-09-26 14:05
Android
点击显示popupWindow背景切换透明,popupWindow消失背景恢复
popupWindow背景切换透明,popupWindow消失背景恢复privatevoidbgAlpha(floatbgAlpha){WindowManager.LayoutParamslp=getWindow().
getAttributes
嘉平ing
·
2023-09-24 21:09
Activity页面的绘制流程,android开发框架控件主题
View.INVISIBLE);2.获取WindowManagerImpl对象ViewManagerwm=a.getWindowManager();WindowManager.LayoutParamsl=r.window.
getAttributes
m0_64603776
·
2023-09-23 11:40
程序员
面试
移动开发
android
Android设置屏幕大小
getWindowManager();Displayd=manager.getDefaultDisplay();WindowManager.LayoutParamsparams=getWindow().
getAttributes
阿姨半斤饭
·
2023-09-19 08:51
Android 如何隐藏导航栏
第一种:始终隐藏navigation,即使点击屏幕也不会出现:WindowManager.LayoutParamsparams=getWindow().
getAttributes
();params.systemUiVisibility
魅力魔法0030
·
2023-09-07 02:53
Dialog穿透事件处理
Overridepublicvoidshow(){super.show();///**//*设置宽度全屏,要设置在show的后面//*/WindowManager.LayoutParamsparams=getWindow().
getAttributes
TMAC_EAH
·
2023-08-31 16:10
Android全屏界面,弹窗显示时会拉起导航栏
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE属性可以正确隐藏导航栏WindowManager.LayoutParamswindowLayoutParams=getWindow().
getAttributes
geniushorse
·
2023-08-01 03:19
Android
android
ui
systemui
Android Pie(9.0)适配
getDisplayCutout()函数获取缺口屏(刘海屏)的参数可以通过谷歌提供的适配方案,使用挖孔区全屏显示解决:WindowManager.LayoutParamslp=getWindow().
getAttributes
Yasin27878
·
2023-07-31 02:02
android Activity设置背景为半透明的时候会显示上一个activity的内容
在弹出PopupWindow时将当前Activity设置成了半透明:WindowManager.LayoutParamslp=this.activity.getWindow().
getAttributes
郭梧悠
·
2023-07-30 04:52
android干货总结
android
Spring cloud gateway获取本次请求命中的路由id
代码://请求路由信息Routeroute=(Route)exchange.
getAttributes
().get(ServerWebExchangeUtils.GATEWAY_ROUTE_ATTR);
hcd1129
·
2023-07-26 09:53
gateway
java
spring
cloud
1024程序员节
Android隐藏状态栏
privatevoidisStatusBarHide(booleanenable){if(enable){WindowManager.LayoutParamslp=getWindow().
getAttributes
潇萧之炎
·
2023-07-24 04:06
沉侵式状态栏
=null){WindowManager.LayoutParamsparams=window.
getAttributes
();params.gravity=Gravity.CENTER;params.width
MrZhangJian
·
2023-06-21 21:01
BottomSheetDialogFragment弹出背景色透明,展示完整
{super.onStart();Windowwindow=getDialog().getWindow();WindowManager.LayoutParamswindowParams=window.
getAttributes
木叶纷飞
·
2023-06-14 01:59
将activity设置成类似为dialog实现方式的操作
dialog实现方式的操作:1、自定义activity的大小Windowwindow=getWindow();WindowManager.LayoutParamslayoutParams=window.
getAttributes
兰琛
·
2023-06-13 08:09
android
java
开发语言
修改原生AlertDialog的背景透明度
但是像修改透明度之类的属性时,百度一波后我发现大家都这样写,WindowManager.LayoutParamslp=dialog.getWindow().
getAttributes
();lp.alpha
SleepWalkerLj
·
2023-04-19 12:04
解决android水滴屏刘海屏隐藏上方状态栏后仍然有小黑条的方法/水滴屏fullscreen后上方状态栏为黑条
包括直接用androidstudio的fullscreenactivity,仍然没解决,后面查找资料加入以下代码:WindowManager.LayoutParamslp=this.getWindow().
getAttributes
女友杨超越
·
2023-04-06 18:35
Android 自定义Dialog注意事项
win.setBackgroundDrawable(newColorDrawable(Color.TRANSPARENT));WindowManager.LayoutParamsparams=win.
getAttributes
苏坡坡要吃婆婆酥
·
2023-03-17 00:26
解决华为手机pop弹出后背景色不发生变化的问题
publicstaticvoidsetWindowBackground(Contextcontext,floatalpha){WindowManager.LayoutParamslp=((Activity)context).getWindow().
getAttributes
pengpengli
·
2023-03-10 13:31
笔记记录
qijingwang的博客-CSDN博客WindowdialogWindow=mDialog.getWindow();WindowManager.LayoutParamslp=dialogWindow.
getAttributes
霁逸lei
·
2023-02-18 01:25
Dialog有时候底部会空白一部分
Windowwin=getDialog().getWindow();WindowManager.LayoutParamsparams=win.
getAttributes
();params.gravity
萧关逢候骑11
·
2023-02-06 07:33
Android Pie窗口亮度调节
1调节Activity亮度先看调节方式:WindowManager.LayoutParamslp=activity.getWindow().
getAttributes
();lp.screenBrightness
marine8888
·
2023-01-30 03:54
Android 输入框被挡问题完美解决方案
window.
getAttributes
().softInputMode=Win
·
2022-12-07 19:45
PHP+Go 开发仿简书,实战高并发高可用微服务架构完结无密
window.
getAttributes
()。softInp
·
2022-10-15 15:31
php
Vue3 + React18 + TS4 入门到实战内附ppt上山的阿科姿
window.
getAttributes
()。soft
·
2022-10-15 14:30
react.js
分享计算机基础更适合程序员的编程必备基础知识2022新版
window.
getAttributes
()。softInputM
·
2022-10-15 14:29
计算机原理
【Android】亮度改变问题-部分手机最大亮度超过255
=(int)(255*deltaY*3/mScreenHeight);WindowManager.LayoutParamsparams=JZUtils.getWindow(getContext()).
getAttributes
下雨天的小白鞋
·
2022-03-08 11:41
关于DialogFragment全屏方案
设置高度很多地方都是用这样的写法WindowdialogWindow=getDialog().getWindow();WindowManager.LayoutParamslp=dialogWindow.
getAttributes
键盘上的麒麟臂
·
2022-02-11 19:56
Dialog 出现消失动画和位置
Dialog的动画拿到Dialog的实例,dialog.getWindow().
getAttributes
().windowAnimations=R.style.PauseDialogAnimation
一路摇到顶
·
2021-04-27 21:40
自定义dialog显示在底部
null);finalDialogdialog=newDialog(context,R.style.noTitleDialog);WindowManager.LayoutParamswl=window.
getAttributes
ASH救世主
·
2020-09-17 07:25
android
设置窗口透明度,Activity窗口背景变灰
Activityactivity,floatalpha){if(alpha1)return;WindowManager.LayoutParamswindowLP=activity.getWindow().
getAttributes
snow_lyGirl
·
2020-09-16 15:55
android
Activity窗口半透明
使用Dialog状态栏变黑问题
在使用Dialog的时候遇到状态栏无故变黑的问题Windowwindow=getWindow();WindowManager.LayoutParamslp=window.
getAttributes
();
pengboboer
·
2020-09-16 15:07
Android开发遇到的坑
Dialog状态栏变黑
当 Activity 以全屏模式运行时,如何允许 Android 系统状态栏在顶层出现,而不迫使 Activity 重新布局让出空间
系统状态栏在顶层出现,而不迫使Activity重新布局让出空间privatevoidhideStatusBar(){WindowManager.LayoutParamsattrs=getWindow().
getAttributes
Harwad_li
·
2020-09-16 15:03
android
Android App状态栏动态显示隐藏
写到这里希望能帮到苦苦找寻这个的人privatevoidfull(booleanenable){if(enable){WindowManager.LayoutParamslp=getWindow().
getAttributes
lance_小超
·
2020-09-15 08:57
android
常规开发笔记
android顶部状态栏透明化,并释放空间
类似这种在网上搜索找到两种方法:if(Build.VERSION.SDK_INT>=19){WindowManager.LayoutParamslocalLayoutParams=mActivity.getWindow().
getAttributes
lemon15588
·
2020-09-14 19:00
判断该路径是文件还是文件夹
1、//判断该路径是文件还是文件夹,如果是文件夹if(File.
GetAttributes
(path).CompareTo(FileAttributes.Directory)==0){//DirectoryInfodinfo
sun庆
·
2020-09-13 22:08
IO操作
Android:解决全屏界面到带有状态栏界面切换问题
在跳转界面之前(也就是在全屏的界面),加上以下代码/**解决进入首页时上部分显示半个问题*/Intentintent;WindowManager.LayoutParamsattr=getWindow().
getAttributes
小石头93
·
2020-09-12 20:28
Android
activity做弹窗 位置控制
activity做弹窗位置控制这样可以显示在屏幕底部getWindow().
getAttributes
().gravity=Gravity.BOTTOM;
啸鳯
·
2020-09-11 02:00
Android
android状态栏颜色和ToolBar保持一致
Build.VERSION.SDK_INT>=Build.VERSION_CODES.KITKAT){WindowManager.LayoutParamslocalLayoutParams=getWindow().
getAttributes
Kyle雨檬
·
2020-08-26 23:06
toolbar设置
操作系统概论(八)
.html网页文件.zip压缩包文件操作:CREATE:创建DELETE:删除OPEAD:打开CLOSE:关闭READ:读取WRITE:写入APPEND:写入限制SEEK:把当前位置指针,指向特定位置
GETATTRIBUTES
贩剑小僧
·
2020-08-26 15:33
操作系统概论
DialogFragment自定义dialog的位置和大小
super.onResume();WindowdialogWindow=getDialog().getWindow();WindowManager.LayoutParamslp=dialogWindow.
getAttributes
老黑牛
·
2020-08-24 21:36
Android
Android Dialog 叠加或者 Dialog上弹出 PopWindow ,第二个Dialog 全屏方法
();/***dialog上弹出popWindow的时候*设置宽度全屏,要设置在show的后面*/WindowManager.LayoutParamslayoutParams=getWindow().
getAttributes
jessica_zc
·
2020-08-24 21:51
遇到的坑
android 自定义Dialog设置背景颜色
dialog.setContentView(R.layout.dialog_layout);WindowManager.LayoutParamslayoutParams=dialog.getWindow().
getAttributes
学习安卓的小菜鸟
·
2020-08-22 18:26
对话框
android
AlertDialog设置大小与设置为圆角后有阴影
window.setBackgroundDrawable(newColorDrawable(Color.TRANSPARENT));2.设置大小WindowManager.LayoutParamslp=dialog.getWindow().
getAttributes
忒不靠谱儿
·
2020-08-22 17:42
DialogFragment显示动画
主要是用这么一句dialog.getWindow().
getAttributes
().windowAnimations=R.style.dialogWindowAnim;具体的可以看下面的代码。
Sanjay_f
·
2020-08-22 12:46
android
CAS 返回多个信息为空
CASclient端使用Filter获得server端传回的信息,如果多个信息使用:assertion.getPrincipal().
getAttributes
()来获得一个Map,但是有的时候Map中没有数据为
liuzhiyi7288
·
2020-08-21 14:23
SSO
上一页
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
其他