Android 相册图片 添加应用到分享列表

来源:互联网 发布:第十四届网络夏令营 编辑:程序博客网 时间:2024/05/22 03:48
<activity android:name="Activity" >            <intent-filter android:label="TEST 分享图片" >                <action android:name="android.intent.action.SEND" />                <category android:name="android.intent.category.DEFAULT" />                <data android:mimeType="image/*" />            </intent-filter>        </activity>


@Overrideprotected void onResume() {super.onResume();initSharedImage();}protected void initSharedImage() {try {Intent intent = getIntent();InputStream is;Uri imgUri = (Uri) intent.getExtras().getParcelable(Intent.EXTRA_STREAM);is = getContentResolver().openInputStream(imgUri);BufferedInputStream bis = new BufferedInputStream(is);Bitmap bm = BitmapFactory.decodeStream(bis);imageview.setImageBitmap(bm);} catch (Exception e) {}}


0 0
原创粉丝点击