当前位置: 编程技术>移动开发
本页文章导读:
▪apk安装有关问题 apk安装问题
现象:安装APK时,总是出现失败信息 Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]
原因:没卸载干净。往往是执行uninstall或在应用管理器中卸载是出现了错误
解决方法:
.........
▪ Bit地图 缩放 Bitmap 缩放
public static Bitmap ResizeBitmap(Bitmap bitmap, int newWidth) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); float temp = ((float) height) / ((float) width); int newHeight = (int) ((newWidth) * temp); float s.........
▪ 在线论坛app制造 在线论坛app制作
http://www.motnt.com/
更多资料请访问:http://hylbbs.yupage.com/
......
[1]apk安装有关问题
来源: 互联网 发布时间: 2014-02-18
apk安装问题
现象:安装APK时,总是出现失败信息 Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]
原因:没卸载干净。往往是执行uninstall或在应用管理器中卸载是出现了错误
解决方法:
网上的方法大都是删除/data/app, 清理/data/system/packages.xml。
无效, 问题依旧存在。
最终方法:
1.不要清理packages.xml里的apk信息, 如果已经清理了, 可以重新安装, 系统会自动生成;
2.复制apk到/data/app下,注意名字要与packages.xml里的package name一样;
3.执行adb uninstall <包名>, 终于出现了success, 说明卸载成功!
接下来就可以重新安装了:)
[2] Bit地图 缩放
来源: 互联网 发布时间: 2014-02-18
Bitmap 缩放
public static Bitmap ResizeBitmap(Bitmap bitmap, int newWidth) {
int width = bitmap.getWidth();
int height = bitmap.getHeight();
float temp = ((float) height) / ((float) width);
int newHeight = (int) ((newWidth) * temp);
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
Matrix matrix = new Matrix();
// resize the bit map
matrix.postScale(scaleWidth, scaleHeight);
// matrix.postRotate(45);
Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, width, height,
matrix, true);
bitmap.recycle();
return resizedBitmap;
}
public static Bitmap ResizeBitmap(Bitmap bitmap, int newWidth) {
int width = bitmap.getWidth();
int height = bitmap.getHeight();
float temp = ((float) height) / ((float) width);
int newHeight = (int) ((newWidth) * temp);
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
Matrix matrix = new Matrix();
// resize the bit map
matrix.postScale(scaleWidth, scaleHeight);
// matrix.postRotate(45);
Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, width, height,
matrix, true);
bitmap.recycle();
return resizedBitmap;
}
[3] 在线论坛app制造
来源: 互联网 发布时间: 2014-02-18
在线论坛app制作
http://www.motnt.com/
更多资料请访问:http://hylbbs.yupage.com/
最新技术文章: