liguofeng29’s blog

個人勉強用ブログだっす。

AndroidのUI - LinearLayout

 

linearLayout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="right|center_vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ボタン1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ボタン2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ボタン3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ボタン4" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ボタン5" />
</LinearLayout>