设置android.R.layout.simple_dropdown_item_1line的大小

时间:2013-07-17 10:59:55

标签: android autocomplete

我是Android的新手,我制作了一个自动完成的textview,但它确实有效,但我的问题是android.R.layout.simple_dropdown_item_1line中的文字大小大于simple_dropdown_item_1line

那么我可以设置文字大小或设置android.R.layout.simple_dropdown_item_1line的尺寸吗? 。

提前致谢

2 个答案:

答案 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)