android layout 将EditText 和Button放在同一行
时间: 2024-03-24 16:40:05 浏览: 49
Android-创建单选框-android基本组件
可以使用LinearLayout布局来实现将EditText和Button放在同一行,以下是示例代码:
```
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="请输入内容"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"/>
</LinearLayout>
```
在LinearLayout中设置orientation为horizontal,即可使内部的子view水平排列。将EditText设置layout_weight为1可以使其占据剩余的空间。
阅读全文