Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to continuously check for text change event in android ?
    primarykey
    data
    text
    <p>How can I make my app keep checking for this? Meaning by keep checking if there is text in there</p> <pre><code>String str1, str2; str1 = word.getText().toString(); str2 = answer.getText().toString(); if(!(str1.equals("")) &amp;&amp; !(str2.equals(""))) { teach.setEnabled(true); } else { teach.setEnabled(false); } </code></pre> <p>Here is my java code where would i put the fixed code that makes it check and every thing?? Please help!</p> <pre><code>public class TeachmeDialog extends Activity implements OnClickListener { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.teachme); setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); Button teach = (Button)findViewById(R.id.btn_teach_send); teach.setOnClickListener(this); } @Override public void onClick(View v) { switch(v.getId()) { case R.id.btn_teach_send: { // Create a new HttpClient and Post Header HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost("http://monaiz.net/get.php"); String responseStr = ""; try { TextView word = (TextView)findViewById(R.id.tv_teach_request); TextView answer = (TextView)findViewById(R.id.tv_teach_response); // Add your data List&lt;NameValuePair&gt; nameValuePairs = new ArrayList&lt;NameValuePair&gt;(3); nameValuePairs.add(new BasicNameValuePair("word", word.getText().toString())); nameValuePairs.add(new BasicNameValuePair("answer", answer.getText().toString())); nameValuePairs.add(new BasicNameValuePair("action", "teach")); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); // Execute HTTP Post Request HttpResponse response = httpclient.execute(httppost); HttpEntity entity = response.getEntity( ); responseStr = EntityUtils.toString( entity ); } catch (Exception e) { // TODO Auto-generated catch block } if( responseStr.equals("ok") ) { Toast.makeText(getApplicationContext(), "Poco just learned a new word!", Toast.LENGTH_LONG).show(); try { this.finish(); } catch (Throwable e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } } </code></pre> <p>}</p>
    singulars
    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