【发布时间】:2018-12-24 22:12:51
【问题描述】:
我正在尝试从图库中选择图像并将其发送到其他活动。它在 Kitkat 中运行良好,但在 android Nougat 中无法运行。我也尝试了普通的 setImageUri 和 Picasso。仍然无法在 Imageview 上渲染图像。请看下面的代码。
- MainActivity.java - 我有一个按钮,点击按钮我调用意图打开画廊。
gallery_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Intent.ACTION_PICK); intent.setType("image/"); startActivityForResult(intent, SELECT_PHOTO); } });
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PHOTO) {
Uri selectedImageUri = data.getData();
Log.d("vishal path", selectedImageUri.toString());
selectedImagePath = getPath(selectedImageUri);
Intent intent = new Intent(this, ImageActivity.class);
intent.putExtra("selectedImg", selectedImagePath);
startActivity(intent);
}
}
}
public String getPath(Uri uri) {
if( uri == null ) {
return null;
}
// this will only work for images selected from gallery
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
if( cursor != null ){
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
return uri.getPath();
}
通过上述方法,我可以从图库中捕获图像路径。我可以在日志监视器上看到。
-
图像活动
公共类 ImageActivity 扩展 AppCompatActivity {
ImageView mainImg, brushImg, fontImg; String imgPath; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_image); mainImg = (ImageView) findViewById(R.id.imageSetMain); brushImg = (ImageView) findViewById(R.id.imageBrush); fontImg = (ImageView) findViewById(R.id.imageFont); mainImg.postInvalidate();; Bundle extras = getIntent().getExtras(); imgPath = extras.getString("selectedImg"); Log.d("vishal received path", imgPath); // mainImg.setImageURI(null); // mainImg.setImageURI(Uri.parse(extras.getString("selectedImg"))); Picasso.with(ImageActivity.this).load(new File(imgPath)).into(mainImg); brushImg.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(ImageActivity.this, DrawActivity.class); intent.putExtra("selectedImg", imgPath); startActivity(intent); } }); fontImg.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { } }); }}
activity_image.xml
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.mobilesolution.imgedit.ImageActivity"> <ImageView android:id="@+id/imageSetMain" android:layout_width="336dp" android:layout_height="478dp" android:layout_marginLeft="8dp" android:layout_marginRight="8dp" android:layout_marginTop="16dp" app:layout_constraintHorizontal_bias="0.507" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/imageBrush" android:layout_width="67dp" android:layout_height="38dp" app:srcCompat="@drawable/brush" android:layout_marginLeft="62dp" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintBottom_toBottomOf="parent" android:layout_marginBottom="16dp" android:layout_marginStart="62dp" app:layout_constraintRight_toLeftOf="@+id/imageFont" android:layout_marginRight="8dp" app:layout_constraintHorizontal_bias="0.08" android:layout_marginTop="8dp" app:layout_constraintTop_toBottomOf="@+id/imageSetMain" app:layout_constraintVertical_bias="1.0" /> <ImageView android:id="@+id/imageFont" android:layout_width="65dp" android:layout_height="37dp" app:srcCompat="@drawable/font" android:layout_marginStart="8dp" android:layout_marginEnd="83dp" app:layout_constraintBottom_toBottomOf="parent" android:layout_marginBottom="16dp" android:layout_marginRight="75dp" app:layout_constraintRight_toRightOf="parent" android:layout_marginTop="8dp" app:layout_constraintTop_toBottomOf="@+id/imageSetMain" app:layout_constraintVertical_bias="1.0" /> </android.support.constraint.ConstraintLayout>
现在主要的罪魁祸首文件在这里--
我在 MainActivity.java 中选择图像,通过使用意图,我将图像路径传递给名为 ImageActivity.java 的下一个活动。
在 ImageActivity.java 中,我使用了 imageView.setImageUri(uri),无法在设备上看到图像。毕加索也是如此。
我为毕加索添加了以下依赖项
compile 'com.squareup.picasso:picasso:2.5.2'
我还为清单文件添加了以下权限
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS"/>
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
任何帮助都将不胜感激。
【问题讨论】:
-
您在使用 Google 相册应用时遇到问题吗?
-
@RahulKumar - 是的...打开图片库后,我曾经从照片应用程序中选择图片。我可以在日志监视器中看到图像路径。但是在 imageview 上渲染它时面临问题
-
捆绑附加服务 = getIntent().getExtras(); imgPath = extras.getString("selectedImg"); Log.d("vishal 接收路径", imgPath);这些线路有效吗?我的意思是它是否提供图像路径
-
@Opriday- 是的.. 它给了我路径.. "vishal 收到的路径:content://com.google.android.apps.photos.contentprovider/-1/1/content%3A %2F%2Fmedia%2Fexternal%2Fimages%2Fmedia%2F119/ORIGINAL/NONE/1972447643"
-
谷歌照片没有给出文件的文件路径,所以它必须通过流来完成。当我在
onActivityResult中执行相同操作时,我添加了代码。您可以找到相关性。
标签: android android-layout android-studio android-imageview android-7.0-nougat