Android:如何设置多个按钮、编辑文本等 [关闭]
Posted
技术标签:
【中文标题】Android:如何设置多个按钮、编辑文本等 [关闭]【英文标题】:Android:How to set Multiple button,edittext,etc [closed] 【发布时间】:2013-01-11 22:31:51 【问题描述】:如何在水平方向设置两个或多个按钮,这样所有按钮都按垂直形式排列。 请告诉xml中的编码。
【问题讨论】:
您是否亲自尝试过,或者您希望我们只是……为您做?免费吗? 【参考方案1】:您需要将它们放在线性布局中并将方向设置为水平
<LinearLayout
android:id="@+id/login_selectionButtonGroup"
android:layout_
android:layout_
android:orientation="horizontal">
<Button
android:layout_
android:layout_
android:layout_gravity="center_horizontal"
android:text="Button 1"
android:layout_weight="1">
</Button>
<Button
android:layout_
android:layout_
android:layout_gravity="center_horizontal"
android:text="Button 2"
android:layout_weight="1">
</Button>
</LinearLayout>
希望对你有帮助
【讨论】:
是的,但我可以在 button1 和 button2 下获得另一个按钮吗? 是的,复制答案中的布局应该有 button1 和 button2 和 button3 和 button 4 应该放在下面 @Keyser 加油,现在修好了肯定是整理的时候误删了以上是关于Android:如何设置多个按钮、编辑文本等 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
如何在具有多个edittext的recyclerview中验证和设置错误?