2017-02-13 65 views
2

我非常抱歉,如果这可能是一个简单的解决方案的问题。捕获图像,上传到Firebase并检索Java Android Studio

我该怎么做?

  • 捕获来自按钮
  • 图像上载图像火力地堡存储
  • 检索图像中的ImageView的

什么是我的麻烦这么远?

  • 拍照,但当我点击打勾时崩溃。
  • 因此没有上传或正在实现。

我的代码

P.N我已经看过很多其他论坛和视频教程,但没有的似乎是工作。希望有人能帮助。

public class LeaderboardActivity extends AppCompatActivity { 

    private static final int CAMERA_REQUEST_CODE = 1; 
    private static final int REQUEST_TAKE_PHOTO = 1; 
    private StorageReference mStorage; 

    private ProgressDialog mProgress; 

    String mCurrentPhotoPath; 




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

     mStorage = FirebaseStorage.getInstance().getReference(); 

     final Button bImage = (Button) findViewById(R.id.bCamera); 
     final ImageView ivPic = (ImageView) findViewById(R.id.ivPic); 

     mProgress = new ProgressDialog(this); 

     bImage.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); 
       startActivityForResult(intent, CAMERA_REQUEST_CODE); 


      } 
     }); 
    } 

    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
     super.onActivityResult(requestCode, resultCode, data); 

     if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) { 

      mProgress.setMessage("Uploading Image"); 
      mProgress.show(); 

      Uri uri = data.getData(); 
      StorageReference filepath = mStorage.child("Photo").child(uri.getLastPathSegment()); 
      filepath.putFile(uri).addOnSuccessListener(new OnSuccessListener <UploadTask.TaskSnapshot>() { 
       @Override 
       public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) { 
        mProgress.dismiss(); 
        Toast.makeText(LeaderboardActivity.this, "Uploading Complete...", Toast.LENGTH_LONG); 

       } 
      }); 
     } 
    } 

    private File createImageFile() throws IOException { 
     // Create an image file name 
     String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); 
     String imageFileName = "JPEG_" + timeStamp + "_"; 
     File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES); 
     File image = File.createTempFile(
      imageFileName, /* prefix */ 
      ".jpg", /* suffix */ 
      storageDir /* directory */ 
     ); 

     // Save a file: path for use with ACTION_VIEW intents 
     mCurrentPhotoPath = image.getAbsolutePath(); 
     return image; 
    } 

    private void dispatchTakePictureIntent() { 
     Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); 
     // Ensure that there's a camera activity to handle the intent 
     if (takePictureIntent.resolveActivity(getPackageManager()) != null) { 
      // Create the File where the photo should go 
      File photoFile = null; 
      try { 
       photoFile = createImageFile(); 
      } catch (IOException ex) { 
       // Error occurred while creating the File 

      } 
      // Continue only if the File was successfully created 
      if (photoFile != null) { 
       Uri photoURI = FileProvider.getUriForFile(this, 
        "com.example.android.fileprovider", 
        photoFile); 
       takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI); 
       startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO); 
      } 
     } 
    } 
} 

错误在Android的监视器

不知道这将有助于

02-13 02:30:32.693 2133-2133/com.example.rikhi.chores E/AndroidRuntime: FATAL EXCEPTION: main 
Process: com.example.rikhi.chores, PID: 2133 
    java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { act=inline-data (has extras) }} to activity {com.example.rikhi.chores/com.example.rikhi.chores.LoginRegister.InsideMainActivity.LeaderboardActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getLastPathSegment()' on a null object reference 
    at android.app.ActivityThread.deliverResults(ActivityThread.java:4089) 
    at android.app.ActivityThread.handleSendResult(ActivityThread.java:4132) 
    at android.app.ActivityThread.-wrap20(ActivityThread.java) 
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1533) 
    at android.os.Handler.dispatchMessage(Handler.java:102) 
    at android.os.Looper.loop(Looper.java:154) 
    at android.app.ActivityThread.main(ActivityThread.java:6119) 
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getLastPathSegment()' on a null object reference 
    at com.example.rikhi.chores.LoginRegister.InsideMainActivity.LeaderboardActivity.onActivityResult(LeaderboardActivity.java:74) 
    at android.app.Activity.dispatchActivityResult(Activity.java:6932) 
    at android.app.ActivityThread.deliverResults(ActivityThread.java:4085) 
    at android.app.ActivityThread.handleSendResult(ActivityThread.java:4132)  
    at android.app.ActivityThread.-wrap20(ActivityThread.java)  
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1533)  
    at android.os.Handler.dispatchMessage(Handler.java:102)  
    at android.os.Looper.loop(Looper.java:154)  
    at android.app.ActivityThread.main(ActivityThread.java:6119)  
    at java.lang.reflect.Method.invoke(Native Method)  
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)  
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)  

我已经看过其他人谁有同样的问题,然后他们说什么happend,其次谷歌Android的说明,这又是同样的问题。

+0

我不使用firebase,但使用AsyncHttpClient将HTTP上传请求上传到服务器非常简单 –

+0

不幸的是,我刚刚开始使用Android Studio,并且已经创建了登录数据库而试图让这个工作起作用的用户是XD的最后一步,但是谢谢你不好意思看一下 –

回答

1
  1. 上的开关按钮,单击删除意图,只是叫你 dispatchTakePictureIntetnt()上的onclick按钮监听方法

  2. 此外,检查到你的模拟器的设置,并检查您的相机 权限是对你的这个应用程序,并进入firebase控制台 并检查规则,如果规则不等于空使它们等于 为空然后运行您的应用程序,因为!=null规则仅在 是您的应用程序中的验证方法时才起作用

相关问题