基本控件的使用
Posted 锦绣河山锦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本控件的使用相关的知识,希望对你有一定的参考价值。
1.Activity的常用方法
View findViewById(int id) //根据组件的ID取得组件对象
setContentView(int layoutResID) //设置布局文件,设置显示组件
2.TextView控件
android:maxLength="6" //允许最大值
android:textColor="#ff0000" //文件颜色
android:textSize="50px" //文字大小
android:textStyle="bold" //文字样式
android:passwprd="true" //是否以密文方式显示
android:layout_margin="100px" //外边距
android:background="@drawable/a" //背景
android:id="@+id/id值" //设置ID的值
getText().toString() //获得控件的文本内容
setText(); //设置控件的文本内容
3.EditText
android:enabled = "false" //设置是否可用,false不能用
注意:<!--xx-->注释
以上是关于基本控件的使用的主要内容,如果未能解决你的问题,请参考以下文章