ばかげた質問に思えるかもしれませんが、特定のボタンを押すイベントに関連付けられたコードを呼び出せるようにしたいと考えています。
私は情報を探していましたが、私を助けることができるものは何もありません。
私が欲しいものの例:
final ImageView img23 = (ImageView) vTweets.findViewById(R.id.ImageView01);
img23.setId(t);
img23.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
//I need to use this code without the user press the button//
}
});
public void example(){
//Here I need to use the code that is inside the onclick event//
}
ありがとう