摘要:
1.layout中的布局文件xml中不能有大写字母。2.时刻要想着空指针,尤其是安卓5.0后,不报异常,直接ANR. 阅读全文
摘要:
一、关于布局适配1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android:layout_weight)4、如果是纯色背景,尽量使用android的shape 自定义。5、如果需要在特定分辨率下适配,可以在res目录上... 阅读全文
摘要:
public Bitmap convertToBitmap(String path, int w, int h) {BitmapFactory.Options opts = new BitmapFactory.Options();// 设置为ture只获取图片大小opts.inJustDecodeB... 阅读全文