Apache Pivot教程
周末不写文章,休息一下,估计要急死读者了…
TextInput,就是输入框,相当于HTML标签<input type=“text”>
TextInput的方法很多
void copy();
void cut();
char getCharacterAt(int Index);//获取某一位的字符
int getCharacterCount();//获取字符数量
int getInsertPoint(int Index);
String getPrompt();//获取提示
String getSelectedText();//获取选中的文字
int getSelectionLength();//获取选中文字的长度
int getSelectionStart();//获取选中文字开始的地方
Span getSelection();//获取选中信息
String getText();//获取输入文字
String getText(int beginIndex, int ednIndex);//获取指定文字
boolean isEditable();//获取可不可以编辑
boolean isPassword();//获取是不是密码输入框
void clearSelection();//清除选中
void setPassword(boolean password);//设置是不是密码输入框
void setEditable(boolean editable);
上面是比较典型的,可以从get推出set,所以就不多讲了
package text;
import org