首页 > 移动平台 > 详细

android: button 属性

时间:2014-08-06 11:36:41      阅读:326      评论:0      收藏:0      [点我收藏+]

代码中常用属性:

Button bt=new Buttion(Context context);

setClickable(boolean clickable)

设置按钮是否允许点击。

clickable=true:允许点击

clickable=false:禁止点击

setBackgroundResource(int resid)

通过资源文件设置背景色。

resid:资源xml文件ID。

按钮默认背景为:android.R.drawable.btn_default

setText(CharSequence text) 设置按钮显示文字。
setTextColor(int color)

设置按钮显示文字的颜色。

color可以使用系统Color常量,例如 Color.BLACK等。

setOnClickListener(OnClickListener l) 设置按钮点击事件
   

 

xml中常用属性:

android:layout_width=""---控件宽

android:layout_height=""---控件高

android:layout_weight=""---控件权重

android:text=""---控件上的文本内容

android:onClick="doClick"---点击此控件时调用的方法---方法名称为:doClick

android:drawableTop=""---在Button组件上放置图片

android: button 属性,布布扣,bubuko.com

android: button 属性

原文:http://www.cnblogs.com/mowuyan/p/3893991.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!