简单学习Android TextView
程序员文章站
2023-12-19 19:54:46
本文为大家分享了textview的简单学习资料,供大家参考,具体内容如下
xml的几个特殊属性
android:autolink 用于指定是否将文本转换成可点...
本文为大家分享了textview的简单学习资料,供大家参考,具体内容如下
xml的几个特殊属性
android:autolink 用于指定是否将文本转换成可点击的超链接形式,它的属性值有none,web,email,phone,map或all
android:drawbottom 用于将图片添加到文本的低端 同理还有上,左,右
android:hint 当文本为空时,默认显示的是什么
android:grivaity 文本的对齐方式
android:inputtype 显示的文本类型
mainactivity.xml代码
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingbottom="@dimen/activity_vertical_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" android:orientation="vertical" tools:context=".mainactivity" > <textview android:id="@+id/textview1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="666" /> <textview android:id="@+id/textview2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleline="true" android:text="测试是否为单行模式" /> <textview android:id="@+id/textview3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="http://www.baidu.com" android:autolink="web" /> </linearlayout>
mainactivity.java
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingbottom="@dimen/activity_vertical_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" android:orientation="vertical" tools:context=".mainactivity" > <textview android:id="@+id/textview1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="666" /> <textview android:id="@+id/textview2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleline="true" android:text="测试是否为单行模式" /> <textview android:id="@+id/textview3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="http://www.baidu.com" android:autolink="web" /> </linearlayout>
运行结果
上述中的链接如果把apk导入到手机上真的能连接到百度,是不是很神奇….