摘要: 获取适配尺寸的图片:File files = new File(imagePath); FileInputStream is = null; BufferedInputStream bis = null; BitmapFactory.Options opts = new BitmapFactory.Options(); if (files.length() < 51200) { // 20-50k opts.inSampleSize = 2; } else if (files.length() < 307200) { // 50-300k opts... 阅读全文
posted @ 2013-12-23 10:09 上风华 阅读(374) 评论(0) 推荐(0) 编辑
摘要: MainActivity.javaimport android.app.AlertDialog;import android.app.Notification;import android.content.DialogInterface;import android.content.Intent;import android.content.res.Resources;import android.os.Bundle;import android.support.v4.app.FragmentActivity;import android.support.v4.app.FragmentMana 阅读全文
posted @ 2013-12-23 09:57 上风华 阅读(2509) 评论(0) 推荐(0) 编辑