- 浏览: 5819872 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (890)
- WindowsPhone (0)
- android (88)
- android快速迭代 (17)
- android基础 (34)
- android进阶 (172)
- android高级 (0)
- android拾遗 (85)
- android动画&效果 (68)
- Material Design (13)
- LUA (5)
- j2me (32)
- jQuery (39)
- spring (26)
- hibernate (20)
- struts (26)
- tomcat (9)
- javascript+css+html (62)
- jsp+servlet+javabean (14)
- java (37)
- velocity+FCKeditor (13)
- linux+批处理 (9)
- mysql (19)
- MyEclipse (9)
- ajax (7)
- wap (8)
- j2ee+apache (24)
- 其他 (13)
- phonegap (35)
最新评论
-
Memories_NC:
本地lua脚本终于执行成功了,虽然不是通过redis
java中调用lua脚本语言1 -
ZHOU452840622:
大神://处理返回的接收状态 这个好像没有监听到 遇 ...
android 发送短信的两种方式 -
PXY:
拦截部分地址,怎么写的for(int i=0;i<lis ...
判断是否登录的拦截器SessionFilter -
maotou1988:
Android控件之带清空按钮(功能)的AutoComplet ...
自定义AutoCompleteTextView -
yangmaolinpl:
希望有表例子更好。。。,不过也看明白了。
浅谈onInterceptTouchEvent、onTouchEvent与onTouch
典型的使用场景就是要设置一个头像,头像需要从系统图库或者拍照获得,在android4.4之前,我用的代码没问题,但是今天使用android4.4的时候突然发现不灵了。baidu了一圈,终于解决了。
下面是解决方案:
最后只需要在需要的地方调用showSettingFaceDialog()就可以了。
如果要获得剪裁的图片保存路径,然后上传,我这边是这样处理的(这里每个人的写法不一样):
但只要获得filePath就可以根据自己的需求处理了
DocumentsContract add in android 4.4 and better
下面是解决方案:
private String[] items = new String[] { "图库","拍照" }; /* 头像名称 */ private static final String IMAGE_FILE_NAME = "face.jpg"; /* 请求码 */ private static final int IMAGE_REQUEST_CODE = 0; private static final int SELECT_PIC_KITKAT = 3; private static final int CAMERA_REQUEST_CODE = 1; private static final int RESULT_REQUEST_CODE = 2; private void showSettingFaceDialog() { new AlertDialog.Builder(this) .setTitle("图片来源") .setCancelable(true) .setItems(items, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { switch (which) { case 0:// Local Image Intent intent=new Intent(Intent.ACTION_GET_CONTENT); intent.addCategory(Intent.CATEGORY_OPENABLE); intent.setType("image/*"); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) { startActivityForResult(intent,SELECT_PIC_KITKAT); } else { startActivityForResult(intent,IMAGE_REQUEST_CODE); } break; case 1:// Take Picture Intent intentFromCapture = new Intent( MediaStore.ACTION_IMAGE_CAPTURE); // 判断存储卡是否可以用,可用进行存储 if (hasSdcard()) { intentFromCapture.putExtra( MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment .getExternalStorageDirectory(), IMAGE_FILE_NAME))); } startActivityForResult(intentFromCapture, CAMERA_REQUEST_CODE); break; } } }) .setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.dismiss(); } }).show(); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { // 结果码不等于取消时候 if (resultCode != RESULT_CANCELED) { switch (requestCode) { case IMAGE_REQUEST_CODE: startPhotoZoom(data.getData()); break; case SELECT_PIC_KITKAT: startPhotoZoom(data.getData()); break; case CAMERA_REQUEST_CODE: if (hasSdcard()) { File tempFile = new File(Environment.getExternalStorageDirectory(),IMAGE_FILE_NAME); startPhotoZoom(Uri.fromFile(tempFile)); } else { ToastUtils.showShort(context,"未找到存储卡,无法存储照片!"); } break; case RESULT_REQUEST_CODE: if (data != null) { setImageToView(data,iv_face); } break; } } super.onActivityResult(requestCode, resultCode, data); } /** * 裁剪图片方法实现 * * @param uri */ public void startPhotoZoom(Uri uri) { if (uri == null) { Log.i("tag", "The uri is not exist."); return; } Intent intent = new Intent("com.android.camera.action.CROP"); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) { String url=getPath(context,uri); intent.setDataAndType(Uri.fromFile(new File(url)), "image/*"); }else{ intent.setDataAndType(uri, "image/*"); } // 设置裁剪 intent.putExtra("crop", "true"); // aspectX aspectY 是宽高的比例 intent.putExtra("aspectX", 1); intent.putExtra("aspectY", 1); // outputX outputY 是裁剪图片宽高 intent.putExtra("outputX", 200); intent.putExtra("outputY", 200); intent.putExtra("return-data", true); startActivityForResult(intent, RESULT_REQUEST_CODE); } /** * 保存裁剪之后的图片数据 * * @param picdata */ private void setImageToView(Intent data,ImageView imageView) { Bundle extras = data.getExtras(); if (extras != null) { Bitmap photo = extras.getParcelable("data"); Bitmap roundBitmap=ImageUtil.toRoundBitmap(photo); imageView.setImageBitmap(roundBitmap); saveBitmap(photo); } } public void saveBitmap(Bitmap mBitmap) { File f = new File(Environment.getExternalStorageDirectory(),IMAGE_FILE_NAME); try { f.createNewFile(); FileOutputStream fOut = null; fOut = new FileOutputStream(f); mBitmap.compress(Bitmap.CompressFormat.JPEG, 100, fOut); fOut.flush(); fOut.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } //以下是关键,原本uri返回的是file:///...来着的,android4.4返回的是content:///... @SuppressLint("NewApi") public static String getPath(final Context context, final Uri uri) { final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT; // DocumentProvider if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) { // ExternalStorageProvider if (isExternalStorageDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0]; if ("primary".equalsIgnoreCase(type)) { return Environment.getExternalStorageDirectory() + "/" + split[1]; } } // DownloadsProvider else if (isDownloadsDocument(uri)) { final String id = DocumentsContract.getDocumentId(uri); final Uri contentUri = ContentUris.withAppendedId( Uri.parse("content://downloads/public_downloads"), Long.valueOf(id)); return getDataColumn(context, contentUri, null, null); } // MediaProvider else if (isMediaDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0]; Uri contentUri = null; if ("image".equals(type)) { contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI; } else if ("video".equals(type)) { contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI; } else if ("audio".equals(type)) { contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; } final String selection = "_id=?"; final String[] selectionArgs = new String[] { split[1] }; return getDataColumn(context, contentUri, selection, selectionArgs); } } // MediaStore (and general) else if ("content".equalsIgnoreCase(uri.getScheme())) { // Return the remote address if (isGooglePhotosUri(uri)) return uri.getLastPathSegment(); return getDataColumn(context, uri, null, null); } // File else if ("file".equalsIgnoreCase(uri.getScheme())) { return uri.getPath(); } return null; } /** * Get the value of the data column for this Uri. This is useful for * MediaStore Uris, and other file-based ContentProviders. * * @param context The context. * @param uri The Uri to query. * @param selection (Optional) Filter used in the query. * @param selectionArgs (Optional) Selection arguments used in the query. * @return The value of the _data column, which is typically a file path. */ public static String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) { Cursor cursor = null; final String column = "_data"; final String[] projection = { column }; try { cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs, null); if (cursor != null && cursor.moveToFirst()) { final int index = cursor.getColumnIndexOrThrow(column); return cursor.getString(index); } } finally { if (cursor != null) cursor.close(); } return null; } /** * @param uri The Uri to check. * @return Whether the Uri authority is ExternalStorageProvider. */ public static boolean isExternalStorageDocument(Uri uri) { return "com.android.externalstorage.documents".equals(uri.getAuthority()); } /** * @param uri The Uri to check. * @return Whether the Uri authority is DownloadsProvider. */ public static boolean isDownloadsDocument(Uri uri) { return "com.android.providers.downloads.documents".equals(uri.getAuthority()); } /** * @param uri The Uri to check. * @return Whether the Uri authority is MediaProvider. */ public static boolean isMediaDocument(Uri uri) { return "com.android.providers.media.documents".equals(uri.getAuthority()); } /** * @param uri The Uri to check. * @return Whether the Uri authority is Google Photos. */ public static boolean isGooglePhotosUri(Uri uri) { return "com.google.android.apps.photos.content".equals(uri.getAuthority()); }
最后只需要在需要的地方调用showSettingFaceDialog()就可以了。
如果要获得剪裁的图片保存路径,然后上传,我这边是这样处理的(这里每个人的写法不一样):
但只要获得filePath就可以根据自己的需求处理了
private void uploadFace(){ File file = new File(Environment.getExternalStorageDirectory(),IMAGE_FILE_NAME); String filePath=file.getAbsolutePath(); Log.i("tag", "filePath="+filePath); HttpHelper.uploadFileWithConcatUrl(context,HttpHelper.UPDATE_USER_ICON,App.user.getUser_session_key() ,filePath ,new HttpHelper.OnFileUploadListener(){ @Override public void onFileUploadSuccess(String orignUrl, String midImgUrl, String smallImgUrl) { // TODO Auto-generated method stub App.user.setHead_icon(orignUrl); saveUser(); } }); }
评论
3 楼
qq_20092877
2016-10-09
谢谢 很好的解决了我的问题
2 楼
lihansey
2015-09-25
weiran2222 写道
你好,我这个方法不能用啊,怎么办?DocumentsContract.getDocumentId(uri)
DocumentsContract add in android 4.4 and better
1 楼
weiran2222
2015-01-22
你好,我这个方法不能用啊,怎么办?DocumentsContract.getDocumentId(uri)
发表评论
-
某些android手机获取不到IMEI问题
2018-08-21 14:17 7630某些山寨机可能拿不到IMEI 如果非要IMEI可以模拟一个 ... -
APK安装成功后点击"打开"再按Home键应用会重启的问题
2018-08-21 14:13 2767安装系统SD卡里面的apk或者原有的程序更新版本的时候, ... -
使用volley链接Https地址时报SSLHandshakeException
2018-08-21 14:06 2131在真实设备上出现以下错误 ︰ Volley error: ... -
PhotoView+Viewpager双指缩放的时候出现pointerIndex out of range问题
2017-07-10 14:30 4244PhotoView+Viewpager开发图集效果的时候,在某 ... -
Android6.0权限封装
2017-04-01 12:04 1571简介 Android6.0中对权限分为了一般权限和危险权限。 ... -
实现点击 WebView 中的图片,调用原生控件展示图片
2017-04-01 11:14 2809现在有很多时候,我们的 App 都进行了混合开发,而最简单,最 ... -
Android 方法引用数超过 65535 优雅解决
2017-03-31 09:37 1542随着应用不断迭代更新,业务线的扩展,应用越来越大(比如:集成了 ... -
android引用资源@与属性?备忘单
2017-03-30 10:09 1287几天前我偶然发现了我A ... -
ViewPager 与SwipeRefreshLayout,RecyclerView,ScrollView滑动冲突解决方法
2017-03-30 09:55 6564ViewPager 作为一个横向滚动的控件, 在 ViewGr ... -
Android中一些你可能没注意的小效果实现
2017-02-15 21:09 0http://www.see-source.com/blog/ ... -
Android热修复:Andfix和Hotfix,两种方案的比较与实现
2017-02-15 21:00 0http://www.see-source.com/blog/ ... -
Android 从网页中跳转到本地App
2017-01-11 09:27 1880我们在使用微信、QQ、京东等app的时候,会发现有时候通过他们 ... -
Activity的启动模式和onNewIntent
2016-12-28 09:10 1333一、启动模式介绍 启 ... -
android5.0使用Notification报RemoteServiceException的解决办法
2016-08-31 16:13 11546有时android5.0下使用Notification会报如下 ... -
RecyclerView 中的 item 如何居中问题
2016-05-18 09:52 12535一个很简单的Item布局,我只要让它由上而下排列,文字居中 ... -
sqlite3:not found 解决方法
2015-12-08 16:03 2555最最最重要,先root你的手机吧 sqlite3 为一个可 ... -
隐藏底部虚拟键NavigationBar实现全屏
2015-10-08 17:20 9853import android.app.Activity; ... -
服务端执行慢或网络延迟时,Volley多次发送请求的问题
2015-07-27 15:40 6996原文: Android Volley double post ... -
如何获取 Android 设备的CPU核数、时钟频率以及内存大小
2015-06-30 17:04 4381原帖: http://www.jianshu.com/p/f7 ... -
android点滴5
2015-04-10 17:32 2048一些小效果的实现 http://www.see-source. ...
相关推荐
综上所述,从Android 4.4后从图库中获取照片并显示在ImageView上,涉及到Intent、ContentResolver、Uri、权限管理以及图片加载库等多个方面。理解并熟练运用这些知识点,是Android开发者在处理用户交互时必备的技能...
总结,Android 4.4图库Gallery2源码虽然不能直接运行,但它揭示了Android系统中媒体管理的高级技巧和最佳实践。通过对源码的深入学习,开发者可以提升对Android系统的理解,掌握高效的数据管理、视图渲染、用户交互...
Android提供了多种方式让用户选择图片,如使用系统自带的`Intent.ACTION_PICK`来调用图库应用,或者使用第三方库如`Glide`或`Picasso`。通过`startActivityForResult`启动选择图片的意图,并在回调方法`...
然而,当涉及到与网页交互,比如上传用户选择的图库图片时,可能会遇到一些兼容性问题。本文将深入探讨如何完美解决WebView上传图库图片的兼容性问题。 首先,我们来理解WebView的基本用法。WebView是Android SDK中...
接着,图库选择功能通常需要集成Intent系统,让用户能够从系统相册中选择图片。这可以通过Intent.ACTION_PICK或Intent.ACTION_GET_CONTENT来实现。用户选择图片后,应用可以通过 onActivityResult 方法获取选中的...
为了确保应用能在各种Android设备上运行无误,开发者需要处理不同版本系统之间的兼容性问题。以下是对这个主题的详细解析: 1. **Intent用于启动相机和相册** Android提供Intent机制来调用系统服务,如相机和图库...
为了实现图片选择功能,我们可以使用Intent启动系统图库,让用户选择图片,然后通过`onActivityResult()`回调处理返回的图片路径。在Android 6.0(Marshmallow)及以上版本,需要检查运行时权限,确保应用有读取存储...
对于Android 4.4(KitKat)及以上版本,由于存储权限的变化,可能需要处理沙盒文件系统和MediaStore的内容提供者。 现在,我们已经获取到了图片,接下来就是显示和保存。在显示方面,可以使用ImageView控件,设置其...
在搭载3168芯片组的设备上运行Android 4.2时,视频播放器和图库应用程序无法播放WMV格式的文件。 **分析解答**: 此问题通常是由于解码器不支持WMV格式导致的。解决方法是安装额外的解码插件或者更新媒体框架,以...
在较低版本的Android系统中,可以使用`Data.getData()`直接获取图片的URI,但在KitKat及以上版本,我们需要使用`DocumentsContract`类来获取实际的文件路径。 请注意,处理图片时还需要考虑到性能和内存管理。通常...
要实现微信相册的选择功能,可以使用`ACTION_PICK`或`Intent.ACTION_GET_CONTENT`,让用户从手机图库中选择图片。此外,Android 4.4(KitKat)引入了`Storage Access Framework (SAF)`,提供了一个更统一的方式来...
4. **图像选择与加载**:为了从图库选择图片,应用需要调用`Intent`的`ACTION_PICK`或者`ACTION_GET_CONTENT`,让用户选择一张图片。之后,通过`ContentResolver`和`BitmapFactory`来加载选中的图片到内存中。 5. *...