android:button属性代码中常⽤属性:
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)设置按钮显⽰⽂字的颜⾊。
htmlbutton属性
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组件上放置图⽚

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。