Android应用照片上传问题

时间:2015-05-21 19:36:22

标签: android android-studio

我是Android应用开发的新手。我和我的团队正在创建一个使用照片库文件夹上传照片的应用。该应用程序可以拍摄照片并立即上传该照片。但特别是对于三星设备,当我尝试从相机文件夹上传照片时,应用程序会崩溃或上传白页。当我从相机文件夹中尝试不同的文件夹时,这也很完美。它仅在相机文件夹中出现此错误。我用不同的nexus设备测试了我的应用程序,它的工作非常完美。无论何时何地,我一直在寻找这个。我在Android Studio上编写了所有代码以及Java和XML。有没有人有同样的问题,能够解决?我真的需要一个指导。感谢您的时间和关注。

这是我的Java onGalleryClick方法:

public void onGalleryClick(View v) {

    isCameraReleased = true;
    //TODO
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent,
            "Select Picture"), SELECT_PICTURE);
}

1 个答案:

答案 0 :(得分:0)

我想我实现了Picasso库。最后,当我进入图库选项时,我可以访问Camera文件夹(其中一些设备是DCIM)。我相信三星设备的虚拟内存非常低,不知何故它不允许你在你创建的Android应用程序上看到imageView。基本上我在android studio上创建了一个非常简单的按钮,它叫做activity_main.xml。这是:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >

<ImageView
    android:id="@+id/imgView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ImageView>

  <Button
    android:id="@+id/buttonLoadPicture"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_weight="0"
    android:onClick="loadImagefromGallery"
    android:text="Load Picture" >
  </Button>

</LinearLayout>

之后,我创建了MainActivity.java,它提供了所有功能。这是:

import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;

public class MainActivity extends Activity {
   private static int RESULT_LOAD_IMG = 1;
   String imgDecodableString;

   @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void loadImagefromGallery(View view) {
    // Create intent to Open Image applications like Gallery, Google Photos
    Intent galleryIntent = new Intent(Intent.ACTION_PICK,
            android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    // Start the Intent
    startActivityForResult(galleryIntent, RESULT_LOAD_IMG);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    try {
        // When an Image is picked
        if (requestCode == RESULT_LOAD_IMG && resultCode == RESULT_OK
                && null != data) {
            // Get the Image from data

            Uri selectedImage = data.getData();
            String[] filePathColumn = { MediaStore.Images.Media.DATA };

            // Get the cursor
            Cursor cursor = getContentResolver().query(selectedImage,
                    filePathColumn, null, null, null);
            // Move to first row
            cursor.moveToFirst();

            int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
            imgDecodableString = cursor.getString(columnIndex);
            cursor.close();
            ImageView imgView = (ImageView) findViewById(R.id.imgView);
            // Set the Image in ImageView after decoding the String
            imgView.setImageBitmap(BitmapFactory
                    .decodeFile(imgDecodableString));

        } else {
            Toast.makeText(this, "You haven't picked Image",
                    Toast.LENGTH_LONG).show();
        }
    } catch (Exception e) {
        Toast.makeText(this, "Something went wrong", Toast.LENGTH_LONG)
                .show();
    }

}

}

这是您必须在AndroidManifest文件中添加的代码行:

      <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

这是一切中棘手的部分。在你要添加的build.gradle(Module:app)中      在依赖部分编译'com.squareup.picasso:picasso:2.3.3'。

添加后

    ImageView imageView = (ImageView) findViewById(R.id.imageView);

    Picasso.with(this)
            .load("https://cms-assets.tutsplus.com/uploads/users/21/posts/19431/featured_image/CodeFeature.jpg")
            .into(imageView);

你去了!请看看http://code.tutsplus.com/tutorials/android-sdk-working-with-picasso--cms-22149