0

为我之前实现的常见类型的自定义侦听器获取一个奇怪的空指针异常,没有任何问题。

如果我将任何代码放入与活动的主用户界面线程通信的回调方法中,则会发生崩溃。如果我在此方法中放入任何不触及用户界面线程的代码,则不会发生崩溃。这没有意义,因为此类中的所有代码都在 UI 线程上运行,并且不需要使用处理程序或 runonui 方法。

我该如何解决这个问题?

从日志猫:

09-30 10:55:15.360: E/AndroidRuntime(2207): FATAL EXCEPTION: main
09-30 10:55:15.360: E/AndroidRuntime(2207): java.lang.NullPointerException
09-30 10:55:15.360: E/AndroidRuntime(2207):     at 
android.content.ContextWrapper.getResources(ContextWrapper.java:81)
09-30 10:55:15.360: E/AndroidRuntime(2207):     at android.widget.Toast.<init>(Toast.java:92)
09-30 10:55:15.360: E/AndroidRuntime(2207):     at android.widget.Toast.makeText(Toast.java:233)
09-30 10:55:15.360: E/AndroidRuntime(2207):     at StartActivity.onResultReturned(StartActivity.java:124)
09-30 10:55:15.360: E/AndroidRuntime(2207):     at jp.co.forever.tankinspectionsystem.Synchronizer.sendInt(Synchronizer.java:215)
09-30 10:55:15.360: E/AndroidRuntime(2207):     at 
jp.co.forever.tankinspectionsystem.Synchronizer$SendOutMsgAndPack$2.run(Synchronizer.java:162)

StartActivity 类中监听器的代码,这是一个不扩展活动的实用程序类,这里的所有代码都运行在与 UI 线程分开的新线程运行方法中

在类变量声明中

 public OnResultReturnedListener listener;

在 oncreate

 listener = new StartActivity();

listener 是这个活动类中作为嵌套子类的接口

 public interface OnResultReturnedListener {
public void  onResultReturned(int result);
 }

实现监听器的另一个类中的代码,所有代码都在 UI 主线程上运行,没有创建额外的线程

 public class StartActivity extends Activity
 implements Synchronizer.OnResultReturnedListener {

 // method onResultReturned is override for custom listerner class
 // OnResultReturnedListener interface inside of the Synchronizer class

    @Override
public void onResultReturned(int result) {

    // toast like this or any other method that touched the
    // UI thread will result in a crash
Toast.makeText(StartActivity.this, "value returned "
    + result , Toast.LENGTH_SHORT).show();


    // putting the Toast in a handler will not help, still results in crash
    handler.post(new Runnable() {
        @Override
        public void run() {
        Toast.makeText(StartActivity.this, "value returned "
                    + result, Toast.LENGTH_SHORT).show();
        }
        });

    //adding a handler.post to the other class, Synchronizer,
    // that the method call comes from
    // will not help and still causes crashes, for example
    //handler.post(new Runnable() {
    //@Override
    //public void run() {
    //fileTransferStatus = 1;
    //        listener.onResultReturned(fileTransferStatus);
    //   }
    //});

    // this statement will not cause crash
    int x = 13;
    }
 }
4

1 回答 1

0

我相信问题出在 listener = new StartActivity() 中。您手动创建了活动,这就是它没有附加上下文并且无法与 ui 线程交互的原因。您可以将 StartActivity 引用传递给您的 Synchronizer。

于 2013-09-30T04:40:05.197 回答