线性布局LinearLayout

发布时间:2024年01月16日
<?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"
? ? android:orientation="horizontal"
? ? tools:context=".one">

? ? <Button
? ? ? ? android:id="@+id/but01"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="top"
? ? ? ? android:text="按钮1"/>
? ? <Button
? ? ? ? android:id="@+id/but02"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="center_vertical"
? ? ? ? android:text="按钮2"/>
? ? <Button
? ? ? ? android:id="@+id/but03"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="bottom"
? ? ? ? android:text="发送"
? ? ? ? />

</LinearLayout>

? ? <EditText
? ? ? ? android:id="@+id/text01"
? ? ? ? android:layout_width="0dp"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_weight="1"
? ? ? ? android:hint="请输入消息"/>
? ? <Button
? ? ? ? android:id="@+id/but03"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:text="发送"
? ? ? ? />

文章来源:https://blog.csdn.net/lcannal/article/details/135629470
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。