gpt4 book ai didi

android - 如何在不将其他 View 推离屏幕的情况下允许 View 扩展

转载 作者:行者123 更新时间:2023-11-30 02:17:36 25 4
gpt4 key购买 nike

我有一个水平布局,其中有两个 View :一个将显示所选路径的 EditText 右侧的“浏览”Button >编辑文本

我希望 EditText 根据需要扩展,但不要扩展到将 Button 推出屏幕的程度。

这是我当前的 xml:

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/path_view">

<EditText android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/folder_edittext"
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"
android:hint="Folder"/>


<Button android:layout_height="wrap_content"
android:layout_width="60dp"
android:id="@+id/browse_button"
android:text="..."
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"/>

</LinearLayout>

我已经尝试过所有类型的布局,我已经尝试过使用 toLeftOftoRightOf 以及我能想到的一切,我想我现在需要帮助才能得到这个工作。

最佳答案

您可以使用 layout weights 实现此目的:

<LinearLayout
android:layout_width="match_content"
android:layout_height="wrap_content"
android:id="@+id/path_view">

<EditText android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/folder_edittext"
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"
android:hint="Folder"/>

<Button android:layout_height="wrap_content"
android:layout_width="60dp"
android:id="@+id/browse_button"
android:text="..."
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"/>

</LinearLayout>

这个 xml 可以解释为:“让 EditText 占据所有未被其他 View 填充的水平空间”(在这种情况下,唯一的其他 View 是 按钮).

关于android - 如何在不将其他 View 推离屏幕的情况下允许 View 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29050734/

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