gpt4 book ai didi

android - 减少 AutoCompleteTextView 列表中每个元素的高度

转载 作者:行者123 更新时间:2023-12-05 00:17:39 24 4
gpt4 key购买 nike

enter image description here我是 android 的初学者,我尝试过请帮助我的代码是

     <AutoCompleteTextView 
android:id="@+id/autoCompleteTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="top"
android:hint="@string/receipt_account_name" >

我尝试使用 android:dropDownVerticalOffset="5dp"、android:dropDownHeight="5dp"、android:height="5dp"、android:layout_height="5dp"等。未定义字体大小。

在java类中适配器 = new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES);

请帮忙。

最佳答案

像这样创建您自己的 xml

布局/item.xml

 <TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="5dp"/>

然后尝试以下

adapter = new ArrayAdapter<T>(this, R.layout.item,R.id.text1, COUNTRIES);

关于android - 减少 AutoCompleteTextView 列表中每个元素的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20215896/

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