Androidを使った開発のほぼ3年間で、これまでにない問題が発生しています...
写真を撮りたいのですが、写真を撮った後、EditText
活動の様子がはっきりします。私がやっていることは、写真を撮った後にそれらを復元するためEditText
にStrings
使用するにの値を設定することです。getText().toString()
文字列はデータと完全に保存されていますが、使用するsetText
と機能しません...奇妙なことに、それはsetHint
機能します。
どうしてそれができますか?
これが私が使用しているコードです:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
// Image captured and saved to fileUri specified in the Intent
grabImage(imgView);
for (int u = 0; u <= 2; u++)
{
if (savedImgs[u].equals(""))
{
imgs = u + 1;
savedImgs[u] = photo.toString();
break;
}
}
/*Bitmap thumbnail = (Bitmap) data.getExtras().get("data"); ---> It is a small bitmap, for icons...
imgView.setImageBitmap(thumbnail);
imgView.setVisibility(View.VISIBLE);*/
} else if (resultCode == RESULT_CANCELED) {
// User cancelled the image capture
} else {
Toast.makeText(this, "Image couldn't be taken. Try again later.", Toast.LENGTH_LONG).show();
}
}
if (!tempSpotName.equals("") || !tempSpotDesc.equals("")) {
name.setText(tempSpotName);
description.setText(tempSpotDesc);
}
}
name
およびdescription
はグローバルEditTexts
であり、tempSpotName
およびtempSpotDesc
はグローバルStrings
です。
テキストを設定するにはどうすればよいですか?