通过反射来获取资源idtry{ String resName = "ic_launcher"; int resId = R.drawable.class.getDeclaredField(resName).getInt(R.drawable.class); imageView.setImageRes...
分类:
移动开发 时间:
2014-11-26 22:08:30
阅读次数:
173
Fragment切换
/**
** Fragment切换
@Params toFragment 将要切换到的Fragment
resId 装载Fragment的view Id
index Fragment的标识index
toleft 判断Fragment向左切换还是向右切换,以采用不同的动画
Notes: R.anim.push_left_...
分类:
移动开发 时间:
2014-11-23 20:17:54
阅读次数:
248
1.设置Activity为RoboActivity;
2.设置界面@ContentView(int resId)
3.使用@InjectView(int resId)反射组件
4.使用@Inject 设置各种服务
5.使用@InjectResource 设置各种资源...
分类:
其他好文 时间:
2014-11-03 17:47:29
阅读次数:
229
1 /** 2 * 获取压缩后的图片 (官网大图片加载对应代码) 3 * 4 * @param res 5 * @param resId 6 * @param reqWidth 7 * 所需图片压缩尺寸最...
分类:
移动开发 时间:
2014-09-25 12:29:18
阅读次数:
201
它們的原型如下:void android.widget.ImageView.setImageResource(int resId)void android.view.View.setBackgroundResource(int resid)區別是:setImageResource與xml中的src的...
分类:
其他好文 时间:
2014-09-24 19:51:47
阅读次数:
244
这表示方法:setBackgroundDrawable(Drawable)已被遗弃,用setBackgroundResource(resid)替换即可,并且使用更方便eg:button[initial_i][initial_j].setBackgroundResource(R.drawable.hero);
分类:
其他好文 时间:
2014-09-15 03:22:48
阅读次数:
244
android doc中是这样描述的:public voidsetImageResource(int resId)这是其中的一个方法,参数resld是这样:ImageView.setImageResource(R.drawable.icon);看下面这段话Sets a drawable as the...
分类:
其他好文 时间:
2014-09-12 14:48:13
阅读次数:
224
之前忘了记录这个错误,今天又遇到了。唉,人不能纵容自己犯懒,遂记录之。错误:android.content.res.Resources$NotFoundException: String resource ID #0x1原因:一般发生在参数 int resId 错误,你把String赋值给int的r...
分类:
移动开发 时间:
2014-08-21 19:15:34
阅读次数:
231
--------------------------------------------------- 图片放在drawable文件夹下? 如果想要动态引用R.drawable.xxx 图片 ? String mDrawableName = "myimg"; int resID = getResources().getIdentifier(mDraw...
分类:
其他好文 时间:
2014-08-15 16:14:29
阅读次数:
189
如何在Android中为TextView动态设置drawableLeft等两种方式:方式1:手动设置固有边界1 Drawable drawable = getResources().getDrawable(resId);2 //注意查看方法TextView.setCompoundDrawables(...
分类:
移动开发 时间:
2014-08-14 23:52:06
阅读次数:
278