
RelativeLayout 子部件 竖直垂直居中,水准垂直居中方式
2020-08-14
?xml version="1.0" encoding="utf-8"? LinearLayout xmlns:android="apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:text="要想水准垂直居中" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" android:padding="20dp" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:text="要想水准垂直居中" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:text="要想垂直垂直居中" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" android:padding="20dp" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:text="要想垂直垂直居中" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" android:padding="20dp" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:text="要想靠右" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/linearlayout_bg1" android:padding="20dp" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:text="要想靠上" / /RelativeLayout RelativeLayout android:layout_width="fill_parent" android:layout_height="80dp" android:background="@drawable/linearlayout_bg1" android:padding="20dp" TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:text="要想靠下" / /RelativeLayout /LinearLayout
扫描二维码分享到微信