Как установить SearchView TextSize?

​​У меня есть SearchViewвнутри LinearLayout, и я пытаюсь установить для него другой TextSize(SearchView), но например, при установке android:textSize="60sp"ничего не происходит

Это мой код:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
          android:padding="2dp">
<SearchView
        android:id="@+id/searchView"
        android:layout_width="350dp"
        android:textSize="60sp"
        android:layout_height="80dp"
        android:layout_marginTop="15dp"/>
<ListView
        android:id="@+id/search_results"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>

Кто-нибудь знает, как изменить TextSizeэлемента управления?

22
задан tetius 16 August 2012 в 12:49
поделиться