这就是我想做的:我有一个带有一些按钮的网站。该网站已连接到我的 android 应用程序(通过 spacebrew)。根据我单击 ImageButton 更改的背景的按钮。但是每次我点击一个按钮“setBackground”都会抛出异常。
这是我的代码:
public class MainActivity extends Activity{
ImageButton display;
SpacebrewClient client;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction().add(R.id.container, new PlaceholderFragment()).commit();
}
...
//calls the method "changeDisplay"
client.addSubscriber("changeDisplay", SpacebrewMessage.TYPE_STRING, "changeDisplay");
}
public void changeDisplay(String input){
if(input.equals("topay")){
display = (ImageButton)findViewById(R.id.imageButton1);
display.setBackground(getResources().getDrawable(R.drawable.display_2));
}
...
}
}
我找到了这个可能的解决方案:第一个答案。但这似乎对我不起作用。我仍然得到同样的例外。
编辑:也尝试了第二种解决方案。现在“setBackground”抛出 NullPointerException。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
display = (ImageButton)findViewById(R.id.imageButton1);
}
public void changeDisplay(String input){
if(input.equals("topay")){
runOnUiThread(new Runnable() {
public void run() {
display.setBackground(getResources().getDrawable(R.drawable.display_2));
}
});}