Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android Gmail查看圖片時選擇經信息(彩信)分享,手機報錯或手機報錯後又回到查看圖片界面

android Gmail查看圖片時選擇經信息(彩信)分享,手機報錯或手機報錯後又回到查看圖片界面

編輯:關於Android編程

在Packages\apps\mms\src\com\android\mms\ui\UriImage.java
initFromContentUri函數 請找到這段代碼:
/// M: Code analyze 003, For fix bug ALPS00278013, send the Mms
// with a image from phone to email,but the image name changed
// to number and the suffix is lost when received. @{
// filePath = uri.getPath();
filePath = c.getString(
c.getColumnIndexOrThrow(Images.Media.DATA));
/// @}
改為:
/// M: Code analyze 003, For fix bug ALPS00278013, send the Mms
// with a image from phone to email,but the image name changed
// to number and the suffix is lost when received. @{
// filePath = uri.getPath();
try {
filePath = c.getString(
c.getColumnIndexOrThrow(Images.Media.DATA));
} catch (IllegalArgumentException e){
filePath = uri.getPath();
}
/// @}
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved