我是Android的新手,我制作了一个自动完成的textview,但它确实有效,但我的问题是android.R.layout.simple_dropdown_item_1line
中的文字大小大于simple_dropdown_item_1line
。
那么我可以设置文字大小或设置android.R.layout.simple_dropdown_item_1line
的尺寸吗? 。
提前致谢
答案 0 :(得分:1)
创建自定义布局,或复制android.R.layout.simple_dropdown_item_1内容创建一个新的xml并将此xml传递给AutoCompleteTextView
样品:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/autoComplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="10sp"
/>
</LinearLayout>
答案 1 :(得分:0)
github中文件的链接是: https://github.com/android/platform_frameworks_base/blob/master/core/res/res/layout/simple_dropdown_item_1line.xml