実現したいこと
LinearLayoutでボタンを等間隔で横に並べるには、どのようにすればよいでしょうか?
試したこと
全体的な配置は縦に並べたかったので、ルートはLinearLayoutのverticalに設定しました。
その並びの中で、3つのボタンを横に等間隔に並べたかったので、入れ子でhorizontalのLinearLayoutを作成し、
その中にボタンを3つ配置しました。
検索すると「layout_width=”0dp”」と「layout_weight=”1″」にするという方法が見つかるのですが、実際にそのように組んでみても、等間隔に離れませんでした。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical" android:gravity="center"> <TextView (省略) android:layout_marginTop="60dp" /> <TextView (省略) android:layout_marginTop="60dp" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_marginTop="50dp"> <Button android:id="@+id/button4" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="Button" /> <Button android:id="@+id/button5" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="Button" /> <Button android:id="@+id/button6" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="Button" /> </LinearLayout> </LinearLayout>
補足情報(FW/ツールのバージョンなど)
Android Studio Flamingo | 2022.2.1 Patch 2
0 コメント