动态宽度增长 AutoCompleteTextView
首先,这是我在这里发表的第一篇文章,我很高兴最终成为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是一个简单的解决方法。很接近了,只需删除
marginRight
行,交换 Button 和 AutoCompleteTextBox,以便首先定义 Button(具有设置宽度的项目),然后将 AutoCompleteTextBox 设置为对齐toLeftOf按钮的ID。这样就可以解决问题了!
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 alignedtoLeftOf
the Button's ID. This will do the trick!