我还没有找到一个实际示例,专门用于将您刚刚使用相机应用程序拍摄的图像的文件路径保存到应用程序中的SQLite数据库。
我已经看到了从HTML源代码保存图像的代码......不好!我的问题是我有URI但老实说,我无法弄清楚如何将该文件路径插入我的数据库列中的可用数据(开发指南,Stack Overflow问题)。
这是我的代码,我尝试设置编辑文本字段,以便路径可以保存到数据库。我在模拟器中试过这个:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == TAKE_PHOTO_CODE && resultCode == RESULT_OK) {
Bitmap x = (Bitmap) data.getExtras().get("data");
File storagePath = new File(Environment.getExternalStorageDirectory() +
"/DCIM/GPAA/");
storagePath.mkdirs();
File myImage = new File(storagePath,
System.currentTimeMillis() + ".jpg");
try {
FileOutputStream out = new FileOutputStream(myImage);
x.compress(Bitmap.CompressFormat.JPEG, 80, out);
Uri outputFileUri = Uri.fromFile(myImage);
mnotesText = (EditText)findViewById(R.id.notes);
mnotesText.setText (outputFileUri.toString());
((ImageView)findViewById(R.id.photoResultView)).setImageBitmap(x);
out.close();
Toast.makeText(Review.this,
"Image saved: " + outputFileUri.toString(),
Toast.LENGTH_LONG).show();
} catch (FileNotFoundException e) {
} catch (IOException e){
}
}
}
使用此代码,toast会验证字符串是否可用且正确。但是,mnotesText.setText (outputFileUri.toString());
的条目在模拟器中有效。但奇怪的是,手机无法正常工作。
答案 0 :(得分:1)
先生。 Ed回答在他自己的问题中提供了这个答案,我在下面清理了它:
我确信这不是首选方法,但它有效:
在layout.xml中定义编辑文本字段,并通过将文本颜色更改为背景来隐藏文本。如果您想查看文本,请不要。
在数据库管理器中添加适当的字段。
在您的活动中,将文本插入文本字段。
String path = outputFileUri.toString();
mpic.setText (path);
保存后,路径将保存到数据库中。使用BitmapFactory
解码图像路径,如下所示:
// String username created from edit text field to a string
String username = mpic.getText().toString();
// Bitmap will decode the string to a image (bitmap)
Bitmap myBitmap = BitmapFactory.decodeFile(username);
// Image view used to set the bitmap
ImageView myImage = (ImageView) findViewById(R.id.photoResultView);
// Setting the image to the image view
myImage.setImageBitmap(myBitmap);