动态宽度增长 AutoCompleteTextView

发布于 2024-10-05 19:18:18 字数 895 浏览 1 评论 0原文

首先,这是我在这里发表的第一篇文章,我很高兴最终成为 stackoverflow 的一部分。 :D

我想构建一个 AutoComplete-Search,在 AutoCompleteTextView 右侧有一个按钮来提交输入字符串。由于本地化或自定义文本(“搜索”、“立即搜索”等),该按钮可能具有不同的宽度。我希望 AutoCompleteTextView 在整个区域动态增长,直到本地化搜索按钮。

我当前的方法是非常静态的,我必须根据按钮的宽度更改 marginRight:

<RelativeLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<AutoCompleteTextView
android:id="@+id/searchText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="70dip"
android:layout_alignParentLeft="true"/>

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

</RelativeLayout>

Is it possible in android to find a Dynamic Solution?

带着最美好的祝愿, 杰夫

First of all, this is my first post here and i´m happy to be a part of stackoverflow, finally. :D

I want to build a AutoComplete-Search with a button on the right of the AutoCompleteTextView to submit the input string. The button may have different widths, cuz of localization or custom texts ("search", "search it now",...). I want the AutoCompleteTextView growing dynamically over the full with until the localized search button.

My current approch is very static and i have to change the marginRight depending on the width of the button:

<RelativeLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<AutoCompleteTextView
android:id="@+id/searchText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="70dip"
android:layout_alignParentLeft="true"/>

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

</RelativeLayout>

Is it possible in android to find a dynamic solution?

With best wishes,
Jeff

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤 2024-10-12 19:18:18

是的,这是一个简单的解决方法。很接近了,只需删除 marginRight 行,交换 Button 和 AutoCompleteTextBox,以便首先定义 Button(具有设置宽度的项目),然后将 AutoCompleteTextBox 设置为对齐 toLeftOf按钮的ID。这样就可以解决问题了!

<RelativeLayout 
    android:id="@+id/layout" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    >     
    <Button 
        android:id="@+id/btn" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:text="Search" 
        android:layout_alignParentRight="true"
        />        
    <AutoCompleteTextView 
        android:id="@+id/searchText" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@id/btn" 
        />
</RelativeLayout>

Yup, that's an easy fix. You're close, just remove the marginRight line, swap the Button and AutoCompleteTextBox so that the Button (the item with a set width) is defined first, then set the AutoCompleteTextBox aligned toLeftOf the Button's ID. This will do the trick!

<RelativeLayout 
    android:id="@+id/layout" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    >     
    <Button 
        android:id="@+id/btn" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:text="Search" 
        android:layout_alignParentRight="true"
        />        
    <AutoCompleteTextView 
        android:id="@+id/searchText" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@id/btn" 
        />
</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文