gpt4 book ai didi

android-layout - 如何将 EditView 和 Button 并排放置占 90% 的宽度?

转载 作者:行者123 更新时间:2023-11-29 22:07:33 24 4
gpt4 key购买 nike

在 Android 中,我试图完成这个: Search EditText and Button side by side

基本上,能够将按钮与 EditText 并排添加,它们都占据顶行宽度的 90%。 (我不关心拥有像 Twitter 图标这样的 Logo )。

我试过使用 layout_weight 的 LinearLayout,但它们根本没有正确显示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum = "1.0"
android:orientation="vertical"
android:background = "#faadadad" >

<EditText
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight = "0.8"
android:layout_marginLeft = "2dip"
android:layout_marginTop = "1dip"
android:layout_marginBottom = "1dip"
android:hint="Search Terms" />

<Button android:text = "?"
android:layout_width = "0dip"
android:layout_height="2dip" android:layout_weight = "0.2"/>

</LinearLayout>

我在 RelativeLayout 中尝试的任何东西看起来都不正确(我尝试将 2 元素之间的边距设置为 0dips,但运气不好。而且我也无法达到宽度要求的 90%。)

我做错了什么?提前致谢。

最佳答案

尝试使用以下内容:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum = "1.0"
android:orientation="horizontal"
android:background = "#faadadad" >
<LinearLayout android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.8">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft = "2dip"
android:layout_marginTop = "1dip"
android:layout_marginBottom = "1dip"
android:hint="Search Terms" />
</LinearLayout>
<Button android:text = "?"
android:layout_width = "0dip"
android:layout_height="wrap_content"
android:layout_weight = "0.2"/>
</LinearLayout>

所以基本上,当您使用水平 LinearLayout 时,layout_weight 水平工作,即根据 layout_weight 参数 (layout_width="0dp") 划分宽度。如果您使用的是垂直 LinearLayout,则 layout_weight 垂直工作,即高度根据 layout_weight 参数 (layout_height="0dp") 垂直划分。

希望对您有所帮助。

关于android-layout - 如何将 EditView 和 Button 并排放置占 90% 的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10462210/

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