LoginSignup
0
0

More than 5 years have passed since last update.

Xamarinでボタンとかを横並びにしたいとき

Posted at

LinearLayout(Horizontal)を使う
コードはこんな感じになる
lang:Main.axml
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout1">
<Button
android:id="@+id/Button7"
android:text="7"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<Button
android:id="@+id/Button6"
android:text="6"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0