这似乎是一个荒谬的问题,但我希望能够调用与按下特定按钮的事件相关的代码。
我一直在寻找信息,但我没有看到任何可以帮助我的信息。
我想要的示例:
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//
}
谢谢