-2

私はAndroidが初めてで、非常に小さな問題があります。画像を取得するためにどのコードを使用する必要があるか知りたいです。

これを使用してテキストを取得する場合のように:

name = txtname.getText().toString();

では、 Image を取得するために何を使用するのでしょうか?

コード:

public static final String TAG_NAME = "name";
public static final String TAG_IMAGEURL = "imageurl"

String name, image ;

Intent in = getIntent();
String mname = in.getStringExtra(TAG_NAME);
String mimage = in.getStringExtra(TAG_IMAGEURL);

ImageLoader imageLoader = new ImageLoader(getApplicationContext());

final ImageView imgv = (ImageView) findViewById(R.id.image);
final TextView txtn = (TextView) findViewById(R.id.name);

txtn.setText(mname);
imageLoader.DisplayImage(mimage, imgv);

name = txttitle.getText().toString();
image = // here i want to know what i should need to use to get image 
         // like i am getting text using :::txttitle.getText().toString();
4

2 に答える 2

0

ImageView.getDrawable()Drawableでセットを返しますImageView

于 2013-05-09T11:10:46.847 に答える
0

setImageDrawable()イメージを ImageView に設定していた場合は、メソッドを使用してイメージを取得できますimgv.getDrawable()

于 2013-05-09T11:12:25.097 に答える