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加载本地Html文件
wSet.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);wSet.setJavaScriptEnabled(true);InputStreamis=
getResources
doujiawei_1862391
·
2020-08-15 17:01
android
android之service音乐简易版播放器
播放:player.setDataSource(
getResources
().o
xjswmc
·
2020-08-15 17:57
感想
Android开发百科全书①
在string.xml中可以这样写,我今年%1$d岁了在程序中,使用[java]viewplaincopyStringsAgeFormat=
getResources
().getString(R.string.old
CodingForAndroid
·
2020-08-15 16:09
安卓
android项目中常见问题
在BaseActivity中如下设置:@OverridepublicResourcesgetResources(){Resourcesres=super.
getResources
();if(Build.VERSION.SDK_INTBuild.VERSION_CODES.N
tz_1qu212
·
2020-08-15 15:07
Android经验之谈
设置磨砂效果的背景图
//初始化背景privatevoidwallpaperinit(){Resourcesres=
getResources
();//我做的时候是直接放在资源文件夹Mipmap下的Bitmapbitmap=Bitma
qq_31573745
·
2020-08-15 15:17
Android
手机屏幕密度转换工具类
publicfinalclassDensityUtils{/***DisplayMetrics**@return*/publicstaticDisplayMetricsgetDisplayMetrics(){returnResUtils.
getResources
我爱写程序
·
2020-08-15 11:57
Android开发
工具类
android
EncodingUtils 过时
publicstaticStringreadFileFromAssets(Contextcontext,StringfileName){Stringres="";try{InputStreamin=context.
getResources
变身小甜甜
·
2020-08-15 00:11
Android中通过资源文件获取drawable的几种方法
c=article&a=read&id=1411461、Resourcesresources=mContext.
getResources
();Drawabledrawable=resources.getDrawable
Kevin-Cai
·
2020-08-14 13:42
Android学习历程
位图
android
获取drawable
android.support.v7.widget.SearchView 修改字体颜色
问题描述:在v4扩展包下的searchView网上通常采用intid=searchView.getContext().
getResources
().getIdentifier("android:id/search_src_text
badiu_30394251
·
2020-08-14 13:49
android 在Bitmap上进行绘图操作
内容比较简单,直接上源码:需要注意的是,如果Bitmap以bmp=BitmapFactory.decodeResource(this.getBaseContext().
getResources
(),R.drawable.ic_launcher
superyuanzhe
·
2020-08-14 03:28
Android
Settings-sounds
=0){mHelpUrl=
getResources
().ge
lwnlwn1
·
2020-08-14 01:14
代码分析
Android 多分辨率机器适配
首先通过context.
getResources
().getDisplayMetrics().density获
夜风雪
·
2020-08-13 23:51
android
应用
Android中dp与px互转的方法
publicclassScaleUtils{//dp转pxpublicstaticintdip2px(Contextcontext,floatdpValue){finalfloatscale=context.
getResources
xiayiye5
·
2020-08-13 23:28
Android工具类
android 图片缩略图显示
//通过openRawResource获取一个inputStream对象InputStreaminputStream=
getResources
().openRawResource(R.drawable.temp
iteye_3941
·
2020-08-13 14:15
Android 尺寸单位转换dp2px及为什么结果要加上0.5f
代码如下:publicclassDpUtil{publicstaticintpx2dip(Contextcontext,floatpxValue){floatscale=context.
getResources
晓梦忆仁
·
2020-08-13 11:10
Android拾遗
Android初学-----px2dp,dp2px
publicintpxToDp(Contextcontext,intpx){DisplayMetricsdisplayMetrics=context.
getResources
().getDisplayMetrics
我只是个菜鸟
·
2020-08-13 11:47
android
【Android】判断当前手机是否有虚拟按键
NavigationBarpublicstaticbooleancheckDeviceHasNavigationBar(Contextcontext){booleanhasNavigationBar=false;Resourcesrs=context.
getResources
林耿
·
2020-08-12 18:31
心得
获取当前应用程序的版本号
/***获取当前应用程序的版本号*/privateStringgetVersion(){Stringst=
getResources
().getString(R.string.Version_number_is_wrong
weixin_30898109
·
2020-08-12 18:20
android虚拟按键NavigationBar的判断
下面方法可判断手机是否有虚拟按键功能:publicbooleanhasNavigationBarFun(Activityactivity){Resourcesrs=activity.
getResources
湘苑梦
·
2020-08-12 17:35
android
Android 中判断是否存在虚拟按键
NavigationBarpublicbooleancheckDeviceHasNavigationBar(Contextcontext){booleanhasNavigationBar=false;Resourcesrs=context.
getResources
Attack_IT
·
2020-08-12 16:09
android
开发
代码动态设置组件大小
####1、获取屏幕的宽高DisplayMetricsdm=context.
getResources
().getDisplayMetrics();intwidth=dm.widthPixels;//得到屏幕宽度
放大的EZ
·
2020-08-12 12:38
Android
基础入门
Android 资源名资源id互转,根据路径获取bitmap跟drawable
1.根据资源名获取资源ID(name:资源名;"drawable":资源类型;"entry.dsa":包名)intimgID=
getResources
().getIdentifier(name,"drawable
kk_q
·
2020-08-11 01:23
android
PopupWindow 用法 PopupWindow不消失 解决方法
R.layout.newpopupwindow,null),300,300);popupWindow.setFocusable(true);popupWindow.setBackgroundDrawable(Test.this.
getResources
cc超人不会飞
·
2020-08-10 22:35
Android
学习
如何快速的读取本地图片为Bitmap
于是记录了一下图片的读取时间,本次记录是读取图片10次的平均值,因只做了10次读取,可能数据不是太准确,四种方法读取本地图片为bitmap:1、Bitmapbmp=BitmapFactory.decodeResource(
getResources
King-24
·
2020-08-10 22:02
Android之点击水波纹效果
ripple_layout_bg.xml的文件:ripple_bg_drawable.xml的文件:(控件不点击时的状态)给控件设置背景的使用方式://给按钮添加背景btn.setBackground(
getResources
志悠自在
·
2020-08-10 19:08
Android学习
bitmap和canvas实现图层叠加(可实现灰色遮罩)
BitmapFactory.Optionsoptions=newBitmapFactory.Options();options.inJustDecodeBounds=true;BitmapFactory.decodeResource(
getResources
benjamin gao
·
2020-08-10 18:25
bitmap
Android篇-更改shape背景颜色
Activity相应监听事件中修改solid对应的颜色GradientDrawablegdOne=(GradientDrawable)view.getBackground();gdOne.setColor(
getResources
KeeySir
·
2020-08-10 14:13
Android
Android 开发常用代码片段
1、图片旋转BitmapbitmapOrg=BitmapFactory.decodeResource(this.getContext().
getResources
(),R.drawable.moon);
阳光岛主
·
2020-08-10 07:44
Android
自定义spinner字体颜色
ArrayAdaptertermAdapter=newArrayAdapter(getBaseContext(),R.layout.simple_spinner_item);Stringlevel[]=
getResources
莫兰迪不会没有瓶子
·
2020-08-10 05:25
android实例
Android基础课程
android
Android文件读取
SharedPreferences读写操作读取PreferencesActiviry的sdcard存储的专业的Setting数据库获取未安装的APK信息1.读取Asserts文件夹中的文件InputStreamis=
getResources
琴声悠扬TODO
·
2020-08-10 02:03
安卓开发
RelativeLayout实现百分比布局
layout_width="0dp",加android:layout_weight="1.0"//权重相对布局设置layout_width="0dp",代码通过屏幕宽度设置每控件大小//取屏幕高outerHeight=
getResources
安卓世界库
·
2020-08-10 01:55
Android定义字符串数组资源并在程序中使用
在资源文件中定义方式如下:兑换积分排行积分详情我的兑换规则通知在Activity中取得方法如下:String[]sa=
getResources
().getStringArray(R.array.sa);
还是很孤独很沉默
·
2020-08-10 01:34
Android基础
Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.
getResources
异常信息:java.lang.RuntimeException:UnabletostartactivityComponentInfo{***.MainActivity}:java.lang.NullPointerException:Attempttoinvokevirtualmethod'android.content.res.Resourcesandroid.content.Context.ge
scimence
·
2020-08-10 00:36
android
java
GradientDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
android.graphics.drawable.GradientDrawablecannotbecasttoandroid.graphics.drawable.BitmapDrawable出错代码:mThumbBitmap=((BitmapDrawable)
getResources
pang9998
·
2020-08-09 22:50
如何解决Android出现的异常“java.lang.NoSuchMethodError: android.widget.LinearLayout.setBackground”?
Drawabled=
getResources
().
江南孤鹜
·
2020-08-09 22:55
Android
如何解决
android中Spinner(下拉框) 自定义样式 可改变 下拉选项的高度
一、改变高度//建立数据源finalString[]mItems=
getResources
().getStringArray(R.array.liushuispinnername);//建立Adapter
朗佳
·
2020-08-09 22:44
Android
android Java代码中引用字符资源
网上看到的java引用字符资源的方法,都是
getResources
().getString(R.string.xx)的方法,为什么不是直接使用R.string.xx呢?
feiniao8651
·
2020-08-09 20:15
Android
Activity中如何获取strings.xml中的资源
方法一:this.getString(R.string.resource_name);方法二:
getResources
().getString(R.string.resource_name);在LayoutXML
cuihongxing1010
·
2020-08-09 20:21
Android小知识
LayoutInflater 的 inflate 方法引发的 RelativeLayout 测量方法异常
publicViewinflate(@LayoutResintresource,@NullableViewGrouproot,booleanattachToRoot){finalResourcesres=getContext().
getResources
MoveToNext
·
2020-08-09 18:43
学习笔记
Android LayoutInflater.inflate(R.layout.activity_test, container,false)参数解析
ViewpublicViewinflate(@LayoutResintresource,@NullableViewGrouproot,booleanattachToRoot){finalResourcesres=getContext().
getResources
筱筱_
·
2020-08-09 17:34
Android
Studio
android
Android中资源文件中的字符串数组string-array
如下例子:把相应的数据放到values文件的string.xml文件里,或是其他自定义的xml中都可以足球篮球台球然后在Activity里,直接使用Resourcesres=
getResources
()
行走在GIS里的蜗牛
·
2020-08-09 17:55
Andriod
android很的意思的事情,关于Input…
publicvoidreadRaw(){InputStreaminputStream=
getResources
().openRawResource(R.raw.initdata);//很有意思!
weixin_34122810
·
2020-08-09 14:20
移动开发
[小技巧]Android 圆形progressbar的旋转的停止和启动
效果如下图所示:关键的代码publicvoidstart(Viewview){//pBar.setIndeterminate(true);pBar.setIndeterminateDrawable(
getResources
闭上眼睛看
·
2020-08-09 13:46
Android实用的代码
android程序内多语言切换不需要重新启动的解决方案
关于android程序内的的多语言切换,一般能搜索到这段代码:publicvoidswitchLanguage(Localelocale){Configurationconfig=
getResources
touch_ping
·
2020-08-09 12:48
android
ViewPager显示左右两边item的一部分,ViewPager显示左右两边的View
无效//设置边距5dpmViewPager.setPageMargin(dip2px(5));//dp转px的函数privateintdip2px(intvalue){finalfloatscale=
getResources
Android凯
·
2020-08-09 12:59
Android
android开发教程之判断是手机还是平板的方法
方法一复制代码代码如下:publicstaticbooleanisTablet(Contextcontext){return(context.
getResources
().getConfiguration
ruizhenggang
·
2020-08-09 11:02
android技术文档
[译]使用Android Theme属性进行个性化
你也许注意到context.
getResources
().getColor(R.color.some_color_resource_id);AndroidStudio会提示Resources#getColor
豆沙包lo
·
2020-08-09 10:04
Android
[Android] 一种优化view inflate耗时的方法
2.在使用view的时候,使用类似如下的代码:Viewview=ViewCache.getInstance().popAndAquire(
getResources
().
legendmohe
·
2020-08-09 09:30
android 测量基础--测量控件宽高以及位置的技巧
1.获得屏幕的宽高privatevoidgetWindowHeight(){intheightPixels=
getResources
().getDisplayMetrics().heightPixels
奔跑的杰尼龟
·
2020-08-09 07:05
android基础
RadioGroup 和RadioButton制作Tab修改RadioButton的大小
使用RadionGroup做Tab时,调整RadioButton的图片大小有两种方式:设置前:1.直接修改图片的大小再赋值到RadioButton布局文件:代码设置Resourcesresources=
getResources
MS_ISAN
·
2020-08-08 22:33
Android
基础知识
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他