I have an EditText and a Button in my application.
When the button is clicked,the text entered in the EditText is added to a ListView.
I want to disable the Button if the EditText is empty.How to do this ?
This is my code for button click
ImageButton imb=(ImageButton)findViewById(R.id.btn_send);
imb.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View arg0)
{
EditText et = (EditText)findViewById(R.id.EditText1);
String str = et.getText().toString();
web1.add(str);
Toast.makeText(ShoutSingleProgram.this, "You entered...."+str, Toast.LENGTH_SHORT).show();
adapter1.notifyDataSetChanged();
et.setText("");
}
});
}
How can i do this ?
Initally in
onCreate()
disable the button. Then add aaddTextChangedListener
to the edit text. within that check the edittext length and disable if it is 0 or otherwise enable itSimple just check the condition in onCreate
on Oncreate() , before button click you should check the condition as,
Add a TextWatcher to your EditText, so that when you change the text inside it, you Button enables or disables itself.
I used
TextUtils
for a concise solution:you check the status of an edittext at runtime using the text watcher. the below code counts the text length and disables if the length is zero. use this code: