鍍金池/ 問答/Android/ android UI 布局

android UI 布局

clipboard.png

clipboard.png

上邊的TextView是設(shè)置的水平居中,但是顯示還是在左上角,怎么讓它局中顯示?

回答
編輯回答
乖乖噠

clean一下,重新編譯,運行一下

2017年11月9日 18:00
編輯回答
雨蝶

you should set orientation for LinearLayout,if you want to make TextView center horizontal,just setandroid:orientation="vertical" for LinearLayout is OK ~

2017年10月24日 11:17
編輯回答
我以為
修改以下兩個屬性:
<TextView
 android:layout_width="match_parent"
 android:gravity="center_horizontal" />
2018年5月26日 12:29