gpt4 book ai didi

android - 如何使微调器宽度与最大可用项目宽度相同

转载 作者:IT王子 更新时间:2023-10-28 23:44:02 25 4
gpt4 key购买 nike

我意识到即使我使用 wrap_content 作为我的微调器(我避免使用 match_parent 因为我不希望微调器过长),并使用 match_parent 用于微调器的项目 View 和下拉项目 View ,

我仍然发现微调器的宽度与最大项目的宽度不同

enter image description here

如您所见,UnitedKingdom 不合适。

所以,如果我选择 UnitedKingdom,只有微调器会调整大小

enter image description here

即使没有明确选择最大的项目,如何使微调器调整到最大的可用项目宽度?

我的微调器 XML 是

<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp" />

我的微调器 View XML 是

<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/text_view_0"
style="?android:attr/spinnerItemStyle"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="10dp"
android:gravity="center_vertical" />

<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/checked_text_view_0"
style="?android:attr/spinnerDropDownItemStyle"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="48dp"
android:minHeight="48dp"
android:drawablePadding="10dp" />

最佳答案

你应该可以通过将下拉菜单的宽度指定为WRAP_CONTENT来获得你想要的效果:

<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:dropDownWidth="wrap_content"
android:spinnerMode="dropdown" />

这将测量微调器适配器中最多 15 个项目,以确定它应该使用的宽度。

关于android - 如何使微调器宽度与最大可用项目宽度相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16633705/

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