xamarin android开发 两个按钮 怎么放在同一排上

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xamarin android开发 两个按钮 怎么放在同一排上相关的知识,希望对你有一定的参考价值。

参考技术A <?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="wrap_content"
android:gravity="center"
android:orientation="horizontal"
>

<Button
android:id="@+id/city"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:layout_weight="1"
android:text="北京"
android:textColor="#000"
android:textSize="14dp" />

<Button
android:id="@+id/city2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:layout_weight="1"
android:text="北京"
android:textColor="#000"
android:textSize="14dp" />
<Button
android:id="@+id/city3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="北京"
android:layout_weight="1"
android:textColor="#000"
android:textSize="14dp" />
<Button
android:id="@+id/city4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="北京"
android:layout_weight="1"
android:textColor="#000"
android:textSize="14dp" />
</LinearLayout>

直接上代码,胜过无数句话~本回答被提问者采纳
参考技术B btn1 属性 android:layout_alignParentBottom=“@id/btn2” 参考技术C 把它的布局文件设置成水平的 参考技术D 到main.xml里边去按你的需求添加修改

以上是关于xamarin android开发 两个按钮 怎么放在同一排上的主要内容,如果未能解决你的问题,请参考以下文章

xamarin android开发 怎么实现左,右滑动翻页的效果的

C# Xamarin的安卓APP怎么给一个按钮添加事件?

Xamarin.forms(或)xamarin.ios/xamarin.android(或)本机

Android 语音识别将数据传回 Xamarin Forms

VS/Xamarin Android开发Follow Me

Android XML布局中,怎么设置两个Button按钮在同一行显示