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>解决方法 使用
btn.setEnable(false);
代替
btn.setClickable(false);总结
以上是内存溢出为你收集整理的android – 将按钮可点击属性设置为false全部内容,希望文章能够帮你解决android – 将按钮可点击属性设置为false所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)