Android常用控件-01

来源:互联网 发布:织梦tag标签伪静态 编辑:程序博客网 时间:2024/06/06 08:57
这篇文章主要记录下Android的常用控件以及使用的方法

文本类控件
TextView (显示文本的控件)

代码中常用属性:

TextView tv=new TextView(Conext context);

tv.setText("这是一个控件");---设置控件上的文本内容

tv.setBackgroundColor(Color.WHITE);---设置背景颜色

tv.setTextColor(Color.BLACK);---设置控件上文本的颜色

tv.setTextSize(25);---设置控件上文本的大小

tv.setGrativity(Gravity.CENTER_VERTICAL);---设置文本内容相对于此控件的对齐方式

//设置TextView的布局参数     布局宽     布局高

LayoutParms params=new LayoutParams(480,300);

tv.setLayoutParms(params);


EditText (编辑文本控件)

EditText的属性很多,这里介绍几个:
android:hint="请输入数字!"//设置显示在空间上的提示信息
android:numeric="integer"//设置只能输入整数,如果是小数则是:decimal
android:singleLine="true"//设置单行输入,一旦设置为true,则文字不会自动换行。
android:password="true"//设置只能输入密码
android:textColor = "#ff8c00"//字体颜色
android:textStyle="bold"//字体,bold, italic, bolditalic
android:textSize="20dip"//大小
android:capitalize = "characters"//以大写字母写
android:textAlign="center"//EditText没有这个属性,但TextView有,居中
android:textColorHighlight="#cccccc"//被选中文字的底色,默认为蓝色
android:textColorHint="#ffff00"//设置提示信息文字的颜色,默认为灰色android:textScaleX="1.5"//控制字与字之间的间距
android:typeface="monospace"//字型,normal, sans, serif, monospace
android:background="@null"//背景,这里没有,指透明
android:layout_weight="1"//权重,控制控件之间的地位,在控制控件显示的大小时蛮有用的。
android:textAppearance="?android:attr/textAppearanceLargeInverse"//文字外观
android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottom

android:gray="top" //多行中指针在第一行第一位置

et.setSelection(et.length());//调整光标到最后一行

android:autoText //自动拼写帮助

android:capitalize //首字母大写

android:digits //设置只接受某些数字

Android:singleLine//是否单行或者多行,回车是离开文本框还是文本框增加新行

android:numeric //只接受数字

android:phoneNumber //输入电话号码

android:editable //是否可编辑

android:autoLink=”all” //设置文本超链接样式当点击网址时,跳向该网址


原创粉丝点击