0

这就是我想做的:我有一个带有一些按钮的网站。该网站已连接到我的 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));
            }
      });}
4

1 回答 1

0

好的,我设法解决了我的问题。这是我所做的:

我创建了一个Handler...

Handler handler = new Handler() {
      @Override
      public void handleMessage(Message msg) {
          Bundle bundle = msg.getData();
          String input = bundle.getString("input");
          ImageButton display = (ImageButton)findViewById(R.id.imageButton1);
          if(input.equals("topay")){
              display.setBackground(getResources().getDrawable(R.drawable.display_2));
          } 
          else if ...
         }
     };

...然后是一个 new Runnable,它将 的输入传递changeDisplayHandler.

Runnable runnable = new Runnable() {
            public void run() {         
                Message msg = handler.obtainMessage();
                Bundle bundle = new Bundle();
                String message = "";
                if(input.equals("topay")){
                    message = "topay";
                }
                else if ...
                bundle.putString("input", message);
                msg.setData(bundle);
                handler.sendMessage(msg);
            }
      };
      Thread mythread = new Thread(runnable);
         mythread.start();

现在它正在工作!:-)

但无论如何,感谢您的帮助!

于 2014-06-28T14:23:42.613 回答