Xamarin.Android 水平对齐与垂直对齐

水平对齐:

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 水平对齐与垂直对齐

上一篇:关于android studio3.0版本后引入资源问题error: failed linking file resources


下一篇:Xamarin.Form与Xamarin.Android或Xamarin.IOS的区别简述