I change can you help me to see where is wrong because it's the same error log
enter code here
public class MainActivity extends Activity {
WebView mWebView;
public ImageButton button01;
public ImageButton button02;
public class MainActivity extends Activity {
WebView mWebView;
public ImageButton button01; ``
public ImageButton button02;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(mylayout);
button01 = (ImageButton) findViewById(R.id.Button01);
button02 = (ImageButton) findViewById(R.id.Button02);`enter code here`
button01.setOnClickListener(new ImageButton.OnClickListener(){
public void onClick(View v){ jumpToLayout03();
Intent intent = new Intent();
intent.setClass(MainActivity.this, web.class);
startActivity(intent); }}
public void jumpToLayout03() {
setContentView(activity_main01);
}
});}}
enter code here
I change can you help me to see where is wrong because it's the same error log