您的位置:首页 > 产品设计 > UI/UE

[Android新手学习笔记11]-UI控件之TextView

2017-02-09 14:10 507 查看


常用配置:

<TextView

   android:layout_width="match_parent"

   android:layout_height="wrap_content"

   android:id="@+id/text_view"

   android:text="Hello World!"

   android:gravity="center"

   android:textSize="24sp"

   android:textColor="#00ff00"/>


android:gravity值为:top, bottom, left, right, center, center_vertical, center_horizontal等,可以用"|"来同时指定过个值。

字体大小单位为:sp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Android UI控件