imgタグに画像を表示したい。 OnActivityResultイベントからdata.getData()によってURI値を取得できます。しかし、私はイメージを送ることができ、imgタグで表示することはできません。誰の助けメートルAndroid:imgタグに画像を表示
Camera.javaてください:
public class Camera extends Activity
{
private static final int CAMERA_REQUEST = 1888;
private String selectedImagePath;
WebView webview;
String fileName = "capturedImage.jpg";
private static Uri mCapturedImageURI;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
webview=(WebView)findViewById(R.id.webView1);
}
public void TakePhoto()
{
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, fileName);
mCapturedImageURI = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
Intent cameraIntent = new Intent(ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCapturedImageURI);
startActivityForResult(cameraIntent, CAMERA_REQUEST);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (resultCode == RESULT_OK)
{
if (requestCode == CAMERA_REQUEST)
{
selectedImagePath = getPath(mCapturedImageURI);
webview.loadUrl("javascript:ReceivePhoto(\""+selectedImagePath+"\")");
}
}
}
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
}
HTML:私のアプリケーションを起動しながら、
function CallBack(resultimage)
{
myimg.src = resultimage;
}
写真活動を取った後&を再ロードされ、それが「デバッグのために待って示しています... "。私は何をしたのですか?誰でも私を助けてくれますか?
私は問題があなたのコードである言わないだろう。確認してください:http://stackoverflow.com/questions/2501450/android-release-version-and-waiting-for-debugger and http://stackoverflow.com/questions/644469/cant-debug-android-applications and http ://stackoverflow.com/questions/4375375/how-to-resolve-waiting-for-debugger-message – Zelimir