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();)
}
ご協力いただきありがとうございます。フィリップ・