Note that there are some explanatory texts on larger screens.

plurals
  1. POmy project always perform a force close
    primarykey
    data
    text
    <p>this is the code...</p> <p>this is the first class which the main question was given.. package com.turtle;</p> <pre><code>import com.turtle.R; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.text.InputType; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.EditText; import android.widget.ImageButton; import android.widget.TextView; import android.widget.Toast; import android.widget.ToggleButton; public class Question extends Activity{ protected static final String Level1 = null; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.question); Button chkButton = (Button) findViewById(R.id.bresult); final EditText input = (EditText) findViewById(R.id.etext); final TextView tvresult = (TextView) findViewById(R.id.tvresult2); chkButton.setOnClickListener(new View.OnClickListener() { @Override // TODO Auto-generated method stub public void onClick(View v) { String answer = "Marianas Trench"; String answer2 = "marianas trench"; String answer3 = "MARIANAS TRENCH"; Bundle b = new Bundle(); b.putString("ANSWER", answer); String check = input.getText().toString(); if (check.contentEquals(answer)){ b.putString("ANSWER", answer); Intent intObj = new Intent(Question.this, Level1.class); intObj.putExtras(b); startActivity(intObj); }else if (check.contentEquals(answer2)){ b.putString("ANSWER", answer); Intent intObj = new Intent(Question.this, Level1.class); intObj.putExtras(b); startActivity(intObj); }else if (check.contentEquals(answer3)){ b.putString("ANSWER", answer); Intent intObj = new Intent(Question.this, Level1.class); intObj.putExtras(b); startActivity(intObj); }else{ } } }); } } </code></pre> <p>this was the second class which consist of image button and if clicked, it will proceed to the question page....</p> <pre><code>package com.turtle; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.EditText; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.TextView; public class Level1 extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); this.setContentView(R.layout.level1); ImageButton btl1 = (ImageButton) findViewById(R.id.l1); btl1.setOnClickListener (new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent myIntent= new Intent("com.turtleexploration.QUESTION"); startActivity(myIntent); } }); ImageButton btl2 = (ImageButton) findViewById(R.id.l2); btl2.setOnClickListener (new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent myIntent= new Intent("com.turtleexploration.QUESTION2"); startActivity(myIntent); } }); ImageButton btBacklvl1 = (ImageButton) findViewById(R.id.backlvl1); btBacklvl1.setOnClickListener (new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent myIntent= new Intent("com.turtleexploration.NEWGAME"); startActivity(myIntent); } }); } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload