上边的TextView是设置的水平居中,但是显示还是在左上角,怎么让它局中显示?
修改以下两个属性: <TextView android:layout_width="match_parent" android:gravity="center_horizontal" />
clean一下,重新编译,运行一下
you should set orientation for LinearLayout,if you want to make TextView center horizontal,just setandroid:orientation="vertical" for LinearLayout is OK ~
android:orientation="vertical"
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
clean一下,重新编译,运行一下
you should set orientation for LinearLayout,if you want to make TextView center horizontal,just set
android:orientation="vertical"
for LinearLayout is OK ~