1. 程式人生 > >Xamarin.Android 水平對齊與垂直對齊

Xamarin.Android 水平對齊與垂直對齊

layout view color 添加屬性 style match rap mar horizon

水平對齊:

1、LinearLayout添加屬性:android:orientation="vertical";

2、元件添加屬性:android:layout_gravity="center_horizontal"。

<LinearLayout
   android:layout_width="match_parent"
   android:layout_height="200dp"
   android:orientation="vertical">
  <TextView
        android:layout_width="match_parent"
android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="我要居中對齊呀~"/> </LinearLayout>

垂直對齊:

1、LinearLayout添加屬性:android:orientation="horizontal";

2、元件添加屬性:android:layout_gravity="center_vertical"。

<LinearLayout
  android:layout_width
="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:text="我要垂直對齊呀~" /> </LinearLayout
>

Xamarin.Android 水平對齊與垂直對齊