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
getResources()
Android WebView文字大小调整及页面缩放调整
难免会面对页面缩放,展示与预期不符的问题,这里有几个处理方案:方案一、通过屏幕密度调整分辨率WebSettingssettings=mWebView.getSettings();intscreenDensity=
getResources
IT老五
·
2023-03-16 07:28
Android获取系统亮度的最大与最小值
1、系统亮度最大值的获取方法:intbrightnessSettingMaximumId=
getResources
().getIdentifier("config_screenBrightnessSettingMaximum
blingbling_5a3f
·
2023-03-14 20:47
Android MaterialDesign
一、CardView误区:设置背景颜色,没有圆角android:background="@color/colorPaiGowYellow"mCardView.setBackgroundColor="
getResources
潜心之力
·
2023-03-14 10:58
设置安卓字体大小,不跟随系统
=1){//非默认值
getResources
();}super.onConfigurationChanged(newConfig);}@OverridepublicResourcesgetRes
初见soulmate
·
2023-03-12 19:48
获取String
文件里:android:text="@string/resource_name"2.在activity里:方法一:this.getString(R.string.resource_name);方法二:
getResources
酵母君来了
·
2023-03-11 14:14
Android布局多个checkbox组件处理
ListcheckBoxes=newArrayList<>();for(inti=0;i<100;i++){/**布局文件中的id使用checkbox+数值的形式**/intcbId=
getResources
好战分子敲代码
·
2023-03-10 23:43
实现自定义动画
privatePaintpaint;//privatePainttextPaint;privatePaintmPaint;privatePathmpath;privateintspeed;floatdensity=
getResources
凤橙_52c9
·
2023-03-10 05:48
Android性能优化
getResources
()与Binder导致界面卡顿优化
目录背景观测1.trace体现UI绘制操作严重耗时2.排查measure和layout慢的原因:可疑的多次binder3.binder:在哪、谁为、为何频繁调用4.binder:频繁调用的具体定位结论方案背景某轮测试发现,我们的设备运行一个第三方的App时,卡顿感非常明显:界面加载很慢,菊花转半天滑屏极度不跟手,目测观感帧率低于15对比机(竞品)也会稍微一点卡,但是好很多,基本不会有很大感觉的卡顿
·
2023-02-12 14:58
Android 适配总结
Android适配总结###values-swxxdp用来做适配,表示最小宽度最小宽度计算方法```javasw=160*手机宽度像素/dpi```###dpi获得方式```javadpi=context.
getResources
xiaobinZh
·
2023-02-06 06:53
Android Bitmap和Canvas学习笔记
当然,首先需要获取资源:Resourcesres=
getResources
();使用BitmapDrawable获取位图使用BitmapDrawable(Input
xfxf996
·
2023-02-04 12:01
bitmap
学习笔记
android
map
动态修改SeekBar的progress的颜色记录
Drawabledra=layerDrawable.getDrawable(1);//1是获取到progressdra.setColorFilter(MyApplication.getContext().
getResources
supter川
·
2023-01-31 18:43
Android App内动态替换语言
我们知道Context里是能够通过
getResources
函数获取当前上下文对应的资源,然后就可以通过getString获得对应的文案。
0xCAFEBABE51
·
2023-01-31 17:22
多语言获取索引
[api引用地址](https://developer.android.com/reference/android/icu/text/AlphabeticIndex)Localelocale=
getResources
坏小子_嘟嘟
·
2023-01-31 15:27
No virtual method getColor(I)
java.lang.NoSuchMethodError:NovirtualmethodgetColor(I)IinclassLandroid/content/Context;oritssuperclasses解决方案:将getColor()改为
getResources
刘启敏
·
2023-01-26 17:17
bitmap和drawable的相互转化以及setImageResource(),setImageDrawable(),setImageBitmap()
从本地获取drawable图片:
getResources
().getDrawable(R.drawable.**)获取bitmap:Bitmapb=BitmapFactory().decodeResource
Unvs
·
2023-01-15 13:16
Android基础
android
获取屏幕的宽高
获取屏幕的宽高//获取屏幕的宽displayWidth=context.
getResources
().getDisplayMetrics().widthPixels;//获取屏幕的高displayHeight
病人乙
·
2023-01-09 07:14
android
android
studio
Android10 MTK Camera2 相机强制横屏修改
Android10MTKCamera2相机强制横屏修改本文修改的源码是Android10mt6580平台,由于解决的项目没有传感器,所以是强制横屏相当于getContext().
getResources
weixin_39974948
·
2022-12-16 23:09
android
framework
Android TextView设置字体颜色、文字和大小
一、前言:Android用ContextCompat替换
getResources
()获取资源;androidSDK升级到23之后,getResource.getColor(R.color.color_name
因为我的心
·
2022-12-16 11:05
RadioButton设置图片(位置、大小)的方法和文字颜色设置成选择器
第一步先找到你的RadioButton控件:RadioButtonrbtn=(RadioButton)findViewById(R.id.myrbtn);第二步找到你的图片资源Drawabledrawable=
getResources
送你去见张三
·
2022-12-16 11:43
android
SeekBar 设置圆角和滑块并且滑块高度和seebar高度一样
seebar宽度3,progressDrawable资源4,布局文件android:maxHeight为了使得seebar高度充满设置的宽高5,动态设置二级进度使进度和滑块位置匹配floatwidth=
getResources
程沫286
·
2022-10-12 10:13
android
java
开发语言
在代码中修改TextView的DrawableRight图片
setCompoundDrawables(Drawableleft,Drawabletop,Drawableright,Drawablebottom)Drawable可以通过Drawablenav_up=
getResources
奔跑的图腾
·
2022-02-18 15:58
ContextCompat
ContextCompat.getDrawableContextCompat.getColor替代context.
getResources
().getDrawablecontext.
getResources
龙马君
·
2022-02-13 19:09
Android过时方法总结
BitmapDrawable(Bitmapbitmap)构造函数Drawabledrawable=newBitmapDrawable(bitmap);解决:Drawabledrawable=newBitmapDrawable(
getResources
Android戴勤学
·
2022-02-12 13:14
手机分辨率问题
一,获取手机分辨率的方法1,privatevoidgetWindomMetrics(){DisplayMetricsmetrics=
getResources
().getDisplayMetrics();
編程隨想
·
2022-02-11 02:27
Android MVVM 开发遇到的一些坑
文字颜色转换layout布局里面的TextView的android:textColor如果绑定的是变量ObservableField的话值不能直接使用R.color.xxx,而要使用getContext().
getResources
colinWong
·
2022-02-09 16:34
android获取屏幕密度和屏幕宽度
DisplayMetricsdisplayMetrics=
getResources
().getDisplayMetrics();floatdensity=displayMetrics.density;Log.e
喵叮当
·
2022-02-05 07:54
spring和nacos的加载机制
spring-cloud-context提供引导上下文、加密、刷新范围和环境端点等规范和实现,一起来看它的实现,SpringFactoriesLoader类是通过类加载器通过
getResources
()
·
2021-11-03 14:24
利用Android 防止系统字体变化、显示大小变化影响
2、解决办法使用dp单位在Activity中设置
getResources
()可以在BaseActivity统一处理@OverridepublicResourcesgetRe
·
2021-10-22 18:32
Android 修改系统字体大小,导致页面展示异常解决方案
页面展示异常是因为系统字体大小影响到了程序中字体的单位sp,所以解决此问题的方案1是,将布局中字体大小的单位sp换成dp解决方案2:重写Activity或Application中的
getResources
IT枫
·
2021-10-15 14:43
Android 录制音视频的完整代码
打开cameraprivatevoidopenCamera(intposition){if(mCamera==null){mCamera=Camera.open(position);intdegree=
getResources
·
2021-08-02 11:54
Android View实现圆形进度条
canvas.drawCircle//画圆弧canvas.drawArc//画文本canvas.drawText//抗锯齿paint.setAntiAlias(true);//设置颜色paint.setColor(
getResources
·
2021-08-01 17:43
路由及导航栏菜单权限
后端返回的权限数据格式如下image.pngimage.png路由筛选方法import{
getResources
,getToken}from'@/libs/util';importdefaultRouterfrom
萤火kin
·
2021-07-30 16:08
Android下setTextSize的正确使用姿势
/src/main/res/values/dimens.xml中定义尺寸如下:18sp在代码中引用此尺寸如下:mText.setTextSize(18);//方法1mText.setTextSize(
getResources
DevWang
·
2021-06-27 02:50
去除Dialog顶部分割线
去除某些Android手机系统上dialog顶部出现的分割线Contextcontext=dialog.getContext();intdivierId=context.
getResources
().getIdentifier
tanbiheng
·
2021-06-26 10:54
Material Design基本控件使用Demo
登陆界面login.gif使用的控件:layout_login.xml文件:Android5.0以上支持日夜主题设置intmode=
getResources
().getConfiguration().uiMode
前山饭店
·
2021-06-26 09:46
android 尺寸转换 dp sp in mm pt px转换为int
intspToInt=TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,12,
getResources
().getDisplayMetrics()
湖南的肖逸飞
·
2021-06-24 15:50
Android
getResources
() 方法过时的替代方法
1.
getResources
().getColor()方法过时ContextCompat.getColor(context,R.color.black);2.
getResources
().getDrawable
谁动了我的代码QAQ
·
2021-06-23 16:22
关于android尺寸转换
inputSpaceWidth=(int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,inputSpaceWidth,
getResources
while1love
·
2021-06-22 02:10
获得本地图片的uri地址
这种方法虽然可以,但是每回都会保存一次Bitmapbitmap=BitmapFactory.decodeResource(getContext().
getResources
(),R.drawable.about_us
今天也要努力呀y
·
2021-06-19 03:22
RadioButton 设置Margin间距
布局文件layout活动页面activityfloatdensity=
getResources
().getDisplayMetrics().density;rg_nav=(RadioGroup)findViewById
Lost_Robot
·
2021-06-15 10:34
Android字体大小适配
=1)//非默认值
getResources
();super.onCo
Amy_LuLu__
·
2021-06-14 19:48
代码修改高度代码修改宽度
RelativeLayout.LayoutParamstvNumberParams=(RelativeLayout.LayoutParams)tvNumber.getLayoutParams();tvNumberParams.height=(int)context.
getResources
Alan龙马
·
2021-06-13 17:06
Android 获取屏幕信息,宽,高,密度,dpi
第一种:DisplayMetricsdisplayMetrics=context.
getResources
().getDisplayMetrics();displayMetrics中获取屏幕信息第二种:
百折不挠的饭团
·
2021-06-12 13:25
Android获取状态栏高度
/***获取状态栏高度*@return*/publicintgetStatusBarHeight(){intresult=0;//获取状态栏高度的资源idintresourceId=
getResources
Wiggins_Y
·
2021-06-11 20:39
app字体不随系统改变而变化
=1)
getResources
();super.onConfigurationCh
暮雨_lzw
·
2021-06-11 05:44
自定义drawable大小可控的textview
image.png如果要控制图片的大小(假如设置图片长宽为20dp),一般就要在代码中设置:TextViewtextView=findViewById(R.id.text);Drawabledrawable=
getResources
shada
·
2021-06-10 16:20
★11.Resource
代码Stringstr=
getResources
().getQuantityString(R.plurals.item,/*数量*/,
iDragonfly
·
2021-06-09 15:44
Android 保存资源文件中的图片到本地相册
Bitmapbmp=BitmapFactory.decodeResource(
getResources
(),R.drawable.img_public_no);publicstaticvoidsaveImageToGallery
StoneWay3
·
2021-06-06 03:56
TextView设置文字颜色不起作用
需要使用:mCommonQuestionTextView.setTextColor(context.
getResources
().getColor(ReflectResour
BlackNeko
·
2021-05-20 21:48
Android百度地图API只能显示一个infowindow的完美解决方案
52636741privateBitmapdrawbitmap(){//TODOAuto-generatedmethodstubBitmapphoto=BitmapFactory.decodeResource(ActivityHelper.last().
getResources
流沙3333
·
2021-05-18 23:28
上一页
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
其他