我可以问Quesion:
A.xml有按钮,但我想用b.class调用a.xml按钮,源代码:
public Button getButton2() {
Toast.makeText(view.getContext(), test, Toast.LENGTH_LONG).show();
return button2;
}
但是当我运行这个应用程序时,按钮仍然没有任何响应,是否有任何错误?
答案 0 :(得分:0)
您必须将视图的上下文放到新类中。之后,您可以使用此代码在UI线程中运行它。
((Activity)context).runOnUiThread(new Runnable() {
public void run() {
// Button stuff here
}
});