baseAdapter的用法1.创建一个数组资源类GeneralBeanpackagecom.example.hoyin0211.entry;publicclassGeneralBean{privateintresid;privateStringname;@OverridepublicStringtoString(){return"GeneralBean[resid="+resid+",name="+name+"]";}publicGeneralBean(intresid,String..
分类:
移动开发 时间:
2015-03-05 13:08:05
阅读次数:
185
Android提供两个获取strings.xml文件的方法:CharSequence getText(int resId):返回本地、样式化的字符。String getString(int resId) :单纯返回字符串如: strings.xml中定义资源文件: Plain, bold, it.....
分类:
移动开发 时间:
2015-01-26 16:52:11
阅读次数:
208
public class BitMapTools { /** * 对图片进行解码操作 * * @param resource * 资源文件 * @param resId * 解码位图的iD * @param reqWidt ...
分类:
移动开发 时间:
2015-01-21 22:02:15
阅读次数:
216
用了很久图片压缩,之前人们一直使用google的官方图片压缩方法
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeResource(res, resId, options);
op...
分类:
移动开发 时间:
2015-01-05 15:01:39
阅读次数:
255
Android中的控件中的ImageButton有着一般Button控件所具有的一般特征,但有一个Image的脸因此可以使用setImageResource(resId);来设定其图片资源。经过测定,Button类组件的获取焦点,即setFocusChange()方法基本没有用,因为一般的Butto...
分类:
移动开发 时间:
2015-01-04 09:49:28
阅读次数:
137
动态设置图片控件的宽度和高度:imageView.getLayoutParams().width=600;imageView.getLayoutParams().height=400;设置图片(src):imageView.setImageResource(resId);android获得屏幕高度和...
分类:
其他好文 时间:
2014-12-24 00:02:35
阅读次数:
417
public int getResource(String imageName){ Context ctx=getBaseContext(); int resId = getResources().getIdentifier(imageName, "drawable" ...
分类:
移动开发 时间:
2014-12-22 19:33:06
阅读次数:
237
运行后 手机点击获取分辨率按钮后 程序崩溃原因:String赋值给int的resId,所以编译器找不到正确的resource在这个程序中 获取的分辨率为Int类型 所以报错 在后面加+""即可修改后的代码
分类:
移动开发 时间:
2014-12-22 17:43:35
阅读次数:
218
基于LCLFramework的ASP.NET MVC Plugin开发一个以Bootstrap为基础的adminise界面模板效果图如下: 漂亮界面框架实现 源码下载: https://onedrive.live.com/redir?resid=FC5F01C33230B327!734&authke...
分类:
Web程序 时间:
2014-12-15 15:08:38
阅读次数:
260
错误情景:holder.comment.setText(mlist.get(position).getCommentCount());错在把TextView的setText(int resid) //跑到工程下去找一个对应的resource的id和setText(CharSequence text)...
分类:
移动开发 时间:
2014-12-08 21:18:15
阅读次数:
224