1つのimageViewが描画可能なファイルから画像を動的にロードするレイアウトがあります。私はこれが欲しいです私は特定のサイズのimageViewを持っているので、アップロードするサイズを割り当てる必要があります。Android開発者を検索しましたが、最大の高さと幅を設定する関数しか見ていませんが、irが機能しません。
私はコードを置きます:
image = getIntent().getExtras().getString("image");
ImageView paper = (ImageView)findViewById(R.id.imageView1);
Resources res = getResources();
int id = getResources().getIdentifier(image, "drawable", getPackageName());
Drawable drawable = res.getDrawable(id);
paper.setImageDrawable(drawable);
手伝ってもらえますか?どうもありがとうございます