欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

超链接 博客分类: android学习 android超链接

程序员文章站 2024-03-25 20:44:10
...
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 超链接