1

我是 android 新手,我做了一个自动完成的 textview 并且它正在工作,但我的问题是文本大小android.R.layout.simple_dropdown_item_1line大于simple_dropdown_item_1line.

那么有没有办法可以设置文本大小或设置大小android.R.layout.simple_dropdown_item_1line?.

提前致谢

4

2 回答 2

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>
于 2013-07-17T11:12:28.383 回答
0

srikanth gr 的答案已经过时了。这个答案最好。 什么是“android.R.layout.simple_list_item_1”?

github中文件的链接是: https ://github.com/android/platform_frameworks_base/blob/master/core/res/res/layout/simple_dropdown_item_1line.xml

于 2015-04-04T20:35:56.770 回答