gpt4 book ai didi

android - EditText 和 Button 与下面的 TextView 在同一行?

转载 作者:太空狗 更新时间:2023-10-29 15:49:23 25 4
gpt4 key购买 nike

我想在 Button 旁边放置一个 EditText 小部件,下面还有一个 TextViewEditText 应该调整大小并相应地填充屏幕,而 Button 的宽度应该始终只是它需要的宽度(我通过将宽度设置为 wrap_content 来做到这一点)。

我试图完成的布局应该是相对的。下面是我目前的代码(其中一些是在 StackOverflow 上找到的)。删除 TextView 会为 EditText 和 Button 提供所需的外观,但是当添加 TextView 时, View 会变得非常糟糕。

任何见解都会有所帮助!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
>
<EditText android:text="@+id/EditText01"
android:id="@+id/EditText01"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_width="fill_parent"
/>

<Button android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>

</LinearLayout>

最佳答案

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_width="fill_parent">

<Button

android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
</Button>

<EditText android:text="@+id/EditText01"
android:id="@+id/EditText01"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/Button01"
android:layout_width="fill_parent">
</EditText>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/EditText01"
android:text="@string/hello"
/>
</RelativeLayout>

关于android - EditText 和 Button 与下面的 TextView 在同一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4637379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com