我一直在推荐各种帖子和网站,我从3天开始尝试这个,我无法弄清楚这一点!
我的活动有2个按钮!第一个是Capture,第二个是Save。在按下捕获按钮时,我需要启动相机,然后当我们单击图片并单击确定时,图像将设置为活动中的ImageView。现在,当我点击保存按钮时,我需要将图像保存在我自己的文件夹中的内部存储器中,该内存必须出现在文件浏览器中。说MyCustomFolder>图片> MyCapture.jpg
我尝试了几个例子,但我在一个案例中能做的就是将图像存储在默认目录中,例如Downloads或DCIM或PICTURES。
在其他情况下,我能够将图片存储在Android> data> com.example.shravan.camera>文件>图片> myImage.jpg
如果我在这里发帖,我可以将图像保存在/data/user/0/com.example.shravan.asbdbsadbsabcxscsa/app_mydir/myfile
这里我还有一个方法saveFile正在评论,因为我一如既往地获得 FileNotFound异常!
但是,我无法保存在自己的自定义文件夹中。请检查代码并帮助我,如果我遗漏了某些东西,请告诉我!
代码:
MainActivity.java
package com.example.shravan.asbdbsadbsabcxscsa;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class MainActivity extends AppCompatActivity {
Uri imageUri;
private static final String TAG = "abc";
static final int REQUEST_IMAGE_CAPTURE =1 ;
ImageView iv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iv = (ImageView)findViewById(R.id.myIV);
}
public void Capture(View v){
Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i,REQUEST_IMAGE_CAPTURE);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if(requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK)
{
print("in onAC");
imageUri=data.getData();
iv.setImageURI(imageUri);
}
}
public void savee(View v){
Context context =this;
BitmapDrawable drawable = (BitmapDrawable) iv.getDrawable();
Bitmap bitmap = drawable.getBitmap();
File mydir = context.getDir("mydir", Context.MODE_PRIVATE);
File fileWithinMyDir = new File(mydir, "myfile");
try {
FileOutputStream fos = new FileOutputStream(fileWithinMyDir);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
print("path is"+fileWithinMyDir.getAbsolutePath());
fos.flush();
fos.close();
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
public void saveFile(View v){
Context context =this;
BitmapDrawable drawable = (BitmapDrawable) iv.getDrawable();
Bitmap bitmap = drawable.getBitmap();
File mydir = context.getFilesDir();
String filename = "Arunachala/Shravan/Images/MyImage.jpg";
File file = new File(mydir, filename);
file.mkdirs();
print("path is"+file.getAbsolutePath());
try {
FileOutputStream fos = new FileOutputStream(file);
print("path is"+file.getAbsolutePath());
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
fos.close();
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
}
public void print(String s){
Log.d(TAG, s);
}
}
这是我的content_main.xml文件: 的 content_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.shravan.asbdbsadbsabcxscsa.MainActivity"
tools:showIn="@layout/activity_main">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myIV"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="175dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Capture"
android:id="@+id/myB"
android:onClick="Capture"
android:layout_alignParentBottom="true"
android:layout_toStartOf="@+id/myIV" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save"
android:id="@+id/button"
android:layout_alignParentBottom="true"
android:layout_toEndOf="@+id/myB"
android:onClick="savee" />
</RelativeLayout>
这是我的AndroidManifest.xml文件: 的的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.shravan.asbdbsadbsabcxscsa">
<uses-feature android:name="android.hardware.Camera" android:required="true"></uses-feature>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我最新的logcat:
08-09 14:28:38.889 12727-12727 / com.example.shravan.asbdbsadbsabcxscsa D / abc:path is / data / user / 0 / com.example.shravan.asbdbsadbsabcxscsa / app_mydir / myfile
请帮忙!
答案 0 :(得分:0)
搞定了:
保存代码:
request.AddParameter("Boolean column": false);
Permissions:
b.select_list(:name => "bedroomsMin").when_present.select '3+ Beds'
最后:
转到设备设置&gt;设备&gt;应用程序&gt;应用程序管理器&gt;“您的应用程序”&gt;权限&gt;启用存储权限!