我需要在Android中禁用click-event
按鈕。就像一個樣本,我嘗試了以下幾點。我已將TextView
命名爲(輸入文本)名稱。該條件檢查TextView
是否爲空按鈕,並且可單擊應設置爲false。然而,當吐司印刷時這不會發生。有人可以告訴我原因。此外,如果文本字段不是空的,我想重置clickable event
按鈕爲true。將按鈕可點擊屬性設置爲false
Java文件:
public class ButtonclickabkeActivity extends Activity {
TextView tv;
Button btn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.textView1);
tv.setText("Name");
btn = (Button) findViewById(R.id.button1);
if (tv.getText().toString().length() != 0) {
btn.setClickable(false);
Toast.makeText(getApplicationContext(), "" + tv.getText().toString().length(), Toast.LENGTH_LONG).show();
} else {
btn.setClickable(true);
}
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Toast.makeText(getApplicationContext(), "Button clicked", Toast.LENGTH_LONG).show();
}
});
}
}
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"/>
<TextView
android:text="TextView"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:text="Button"
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
謝謝我設置btRegsiter.setVisibility(View.VISIBLE); – 2016-06-20 05:31:31
'LinearLayout'上的'setClickable(false)'不會導致子視圖無法正常工作。點擊時,onClickListener始終會觸發。即使在XML'可點擊:假'不工作。我錯過了什麼? – FARID 2017-06-03 12:11:09