如何從另外一個 activity 中編輯一個按鈕?
它返回的是:
java.lang.IllegalStateException: Could not execute method of the activity
Caused by: java.lang.NullPointerException
但是我想在 Button getButton = (Button)findViewById(R.id.buttonGet);
獲取 getButton.setEnabled(false);
。
如何實現?
確保在按鈕獲取一個引用時,要調用 setContentView:
在Button getButton = (Button)findViewById(R.id.buttonGet);
代碼之前設置:
setContentView(R.layout.my_activity_layout);