超链接 博客分类: 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)}));
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)}));
上一篇: editplus集成配置svn,小乌龟svn中文语言包下载for windows 博客分类: php软件editplussvn
下一篇: VC6.0与VC 2008的不同之-------SetWindowTextW 不能将参数 1 转换为“LPCTSTR 博客分类: c++ VC++
推荐阅读
-
android TextView setTextColor 博客分类: android androidtextViewtextColor
-
游标泄漏(CursorLeak) 博客分类: android CursorLeakCursorDatabaseObjectNotClosedException
-
一个android sqlite CRUD代码生成小工具 博客分类: android sqliteDAO代码生成orm
-
TextView颜色 博客分类: Android textviewandroidcolor
-
android嵌入lua 博客分类: android luaandroidluajavajniluaj
-
ZXing CaptureActivity黑屏问题 博客分类: android ZXing二维码CaptureActivitySurfaceView黑屏
-
android中角标的实现 博客分类: android 角标superscript
-
超链接 博客分类: android学习 android超链接
-
调用service静态方法抛RuntimeException问题 博客分类: android serviceRuntimeExceptionstatic
-
viewflow的兼容问题 博客分类: android viewflowviewpagerapi level 11