2011-10-27 9 views
0

私はこれに類似したことを試みており、問題もあります。私は私の画面上で動的ImageViewsを使用しています。 Per OnClickListenerビューのリソースIDを変更しています。ビューに表示される描画可能なIDの描画リソースID

クリックされたビューに表示されているDrawableのResource IDが何であるかを知りたいと思っています。

OnClickListener(View v) 
{ 
ImageView temp=(ImageView)v; 
//I Can change Image Resource of the Clicked View with this-> 

temp.setImageResource(R.drawable.picture_1); 

//but how can I find out what Resource ID the Drawable has that is displayed in the View? 
//(I'm searching for a method ->temp.getImageResource();) 

} 

ご協力いただきありがとうございます。フィリップ・

答えて

1

このような何かが

temp.setImageResource(R.drawable.picture_1); 
temp.setTag(R.drawable.picture_1); 

を動作するはずですし、その後、リソースID

temp.getTag(); 
を取得するために
関連する問題