android类调用其他活动按钮

时间:2017-05-14 11:17:50

标签: android button

我可以问Quesion:

A.xml有按钮,但我想用b.class调用a.xml按钮,源代码:

 public Button getButton2() {

       Toast.makeText(view.getContext(), test, Toast.LENGTH_LONG).show();
    return button2;
}

但是当我运行这个应用程序时,按钮仍然没有任何响应,是否有任何错误?

1 个答案:

答案 0 :(得分:0)

您必须将视图的上下文放到新类中。之后,您可以使用此代码在UI线程中运行它。

((Activity)context).runOnUiThread(new Runnable() {
                 public void run() {
                     // Button stuff here
                 }
             });