Application crashes when i set an onclicklistener

2019-09-17 08:22发布

Here is my code Help me out guys. if I remove the select.setonclicklistener. It works like a charm but adding this line crashes the application. Doesn't even show this class.

public class Play extends Activity implements OnClickListener{
private Button sideshow;
private int i = 0; 
private ImageView[] user_images = new ImageView[6];
private int noc;
private int[] user_cards_ids = {R.id.card_1,R.id.card_2,R.id.card_3,R.id.card_4,R.id.card_5,R.id.card_6};
private ArrayList<Integer> user_cards;
@Override
protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.play);
    //Define
    sideshow = (Button) findViewById(R.id.sideshow);
    Bundle extras = getIntent().getExtras();
    noc = extras.getInt("noc");
    //End
    sideshow.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Toast.makeText(Play.this, "Sideshow!", Toast.LENGTH_LONG).show();
        }
    }); 
}
@Override
public void onClick(View v) {
    if(v.getId()==sideshow.getId())
        Toast.makeText(Play.this, "Sideshow", Toast.LENGTH_LONG).show();
}

LOGCAT

11-01 19:55:35.000: E/AndroidRuntime(16587): in writeCrashedAppName, pkgName     :com.example.flash_teenpatti
11-01 19:55:35.000: E/AndroidRuntime(16587): FATAL EXCEPTION: main
11-01 19:55:35.000: E/AndroidRuntime(16587): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.flash_teenpatti/com.example.flash_teenpatti.Play}: java.lang.NullPointerException
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1647)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.os.Looper.loop(Looper.java:130)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread.main(ActivityThread.java:3683)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at java.lang.reflect.Method.invokeNative(Native Method)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at java.lang.reflect.Method.invoke(Method.java:507)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:880)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:638)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at dalvik.system.NativeStart.main(Native Method)
11-01 19:55:35.000: E/AndroidRuntime(16587): Caused by: java.lang.NullPointerException
11-01 19:55:35.000: E/AndroidRuntime(16587):    at com.example.flash_teenpatti.Play.onCreate(Play.java:34)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
11-01 19:55:35.000: E/AndroidRuntime(16587):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
11-01 19:55:35.000: E/AndroidRuntime(16587):    ... 11 more
11-01 19:55:35.050: E/ActivityManager(14462): Exception in bstSendTopActivityInfo while sending HttpPost: Connection to h t t p://10 . 0 . 2 . 2:2861 refused
11-01 19:55:35.980: E/ActivityManager(14462): Exception in bstSendTopActivityInfo while sending HttpPost: Connection to h t t p://10 . 0 . 2 . 2 :2861 refused
11-01 19:55:36.010: E/BstCommandProcessor-Application(14907): Exception in sendHttpRequest: Connection to h t t p://10.0.2.2:2861 refused

3条回答
做自己的国王
2楼-- · 2019-09-17 08:45

Are you sure you have not just set something like this android:onclick="method" in your layout.xml? If yes, probably there's a conflict.

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-09-17 08:47

I'm guessing it's a null pointer exception. Make sure you have a Button that has the id sideshow in your R.layout.play layout.

查看更多
走好不送
4楼-- · 2019-09-17 08:50

You have implemented OnClickListener in the class definition and defined in-line. I would suggest you use the implemented class.

public class Play extends Activity implements OnClickListener{

So you simply set the onclicklistener to this and take out the in-line handler.

    sideshow.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    if(v.getId()==sideshow.getId())
    Toast.makeText(Play.this, "Sideshow", Toast.LENGTH_LONG).show();
}

The benefit of implements is other classes can see what is implemented and actually use the functions. For example in a fragment class you easily call methods in the activity class if they are implemented.

    Activity activity = this.getActivity();
    if (OnClickListener.class.isInstance(activity)) {
    OnClickListener adl = (OnClickListener) activity;
            adl.onClick(myView);
    }
查看更多
登录 后发表回答