超链接

java代码


tv01 = (TextView)findViewById(R.id.tv01);
tv01.setTextColor(Color.RED);
tv01.serTextSize(22f);

//html字符:超链接
String htmlhref = "<a href=\"http:www.google.com.hk\">百度</a>";
//Html.fromHtml解析HTML,生成String
tv01.setText(Html.fromHtml(htmlhref));
//html字符:只显示超链接,不使用
//tv01.setAutoLinkMask(Linkify.All);
//除了显示还可以点击
tv01.setMovementMethod(LinkMovementMethod.getInstance());

et01 = (EditText)findViewById(R.id.editText1);
//让EditText显示为密码框输入
et01.setTransformationMethod(PasswordTransformationMethod.getInstance());
//只显示一行,但内容可以是多行
et01.setLines(1);
//将输入框的内容作为一行显示,一直是一行
et01.setTransformationMethod(SingleLineTransformationMethod.getIntence());
//可以输入的最大长度
et01.setFilters(new InputFilter[]{new InputFilter.LengthFilter(10)}));

你可能感兴趣的:(android,超链接)