Good day. I have three java class in my android program. Before I added the 3rd class the application doesn't stopped but then right now when I already have my 3rd class and when I run it, the play button on my first class suddenly stops. There are no errors in my program though. Here is the code for my 3rd class.
package com.example.fillmeapp;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
public class App3Activity extends Activity {
Button button;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main3);
}
}