码迷,mamicode.com
首页 > 其他好文 > 详细

设置TextView水平居中显示

时间:2016-05-10 23:12:08      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

1、让TextView里的内容水平居中

 android:gravity="center_horizontal"

2、让TextView控件在它的父布局里水平居中

 android:layout_gravity="center_horizontal"

 3、文本布局示例

   <EditText 
        android:id="@+id/factorOne"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
    <EditText 
        android:id="@+id/factorTwo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/sym"/>
    <TextView
        android:id="@+id/sym"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/factorOne"/>        
    <Button 
        android:id="@+id/cal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/factorTwo"/>

Copyright © 吴华锦
雅致寓于高阁渔舟唱晚,古典悠然
格调外发园林绿树萦绕,馥郁清香

设置TextView水平居中显示

标签:

原文地址:http://www.cnblogs.com/hanqing/p/3633706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!