Android SearchViewフォントの色を変更
17145 ワード
SearchViewのhint色はどのように変更されますか?SearchViewは関連する属性を提供していません.ネット上で見つけた方法は基本的に反射によって実現されている.しかし、私は反射が好きではありません.スタイルを修正することはできません.ソースコードを見ることにしました.次はソースコードを見て見つけた方法です.
私が使っているのはv 7パックのSearchViewです.
style.xml
見てみろAppCompat.Light.NoActionBarスタイル、最終的にBaseを見つけます.V7.Theme.AppCompat.ライトのSearchViewStyle
SearchViewStyleを見て
text関連プロパティが見つかりません.親スタイルがあるかどうか見てみましょう.
ははは、これはありませんか、それでは直接textAppearanceを変えるだけでいいのではないでしょうか.結局何の役にも立たないことに気づいた.どうしてですか???興奮しないで、layoutという属性に気づいたかどうか.中に入ってみましょう.これは実はsearchViewのレイアウトファイルです.
レイアウトファイルをよく見て、文字に関するコントロールを探してください.
これはSearchViewの内部クラスSearchAutoCompleteです.彼はAutoCompleteTextViewを継承しています.では、AutoCompleteTextViewのスタイルを変更すればいいです.試してみましょう.
効果:
私が使っているのはv 7パックのSearchViewです.
style.xml
見てみろAppCompat.Light.NoActionBarスタイル、最終的にBaseを見つけます.V7.Theme.AppCompat.ライトのSearchViewStyle
SearchViewStyleを見て
text関連プロパティが見つかりません.親スタイルがあるかどうか見てみましょう.
ははは、これはありませんか、それでは直接textAppearanceを変えるだけでいいのではないでしょうか.結局何の役にも立たないことに気づいた.どうしてですか???興奮しないで、layoutという属性に気づいたかどうか.中に入ってみましょう.これは実はsearchViewのレイアウトファイルです.
"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android"
android:id="@+id/search_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
"@+id/search_badge"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:layout_marginBottom="2dip"
android:drawablePadding="0dip"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
android:visibility="gone" />
"@+id/search_button"
style="?attr/actionButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:focusable="true"
android:contentDescription="@string/abc_searchview_description_search" />
"@+id/search_edit_frame"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginLeft="8dip"
android:layout_marginRight="8dip"
android:orientation="horizontal"
android:layoutDirection="locale">
"@+id/search_mag_icon"
android:layout_width="@dimen/abc_dropdownitem_icon_width"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:layout_gravity="center_vertical"
android:visibility="gone"
style="@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon" />
"@+id/search_plate"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:orientation="horizontal">
"android.support.v7.widget.SearchView$SearchAutoComplete"
android:id="@+id/search_src_text"
android:layout_height="36dip"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
android:singleLine="true"
android:ellipsize="end"
android:background="@null"
android:inputType="text|textAutoComplete|textNoSuggestions"
android:imeOptions="actionSearch"
android:dropDownHeight="wrap_content"
android:dropDownAnchor="@id/search_edit_frame"
android:dropDownVerticalOffset="0dip"
android:dropDownHorizontalOffset="0dip" />
"@+id/search_close_btn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:layout_gravity="center_vertical"
android:background="?attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:contentDescription="@string/abc_searchview_description_clear" />
"@+id/submit_area"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="match_parent">
"@+id/search_go_btn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:paddingLeft="16dip"
android:paddingRight="16dip"
android:background="?attr/selectableItemBackgroundBorderless"
android:visibility="gone"
android:focusable="true"
android:contentDescription="@string/abc_searchview_description_submit" />
"@+id/search_voice_btn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:paddingLeft="16dip"
android:paddingRight="16dip"
android:background="?attr/selectableItemBackgroundBorderless"
android:visibility="gone"
android:focusable="true"
android:contentDescription="@string/abc_searchview_description_voice" />
レイアウトファイルをよく見て、文字に関するコントロールを探してください.
"android.support.v7.widget.SearchView$SearchAutoComplete"
android:id="@+id/search_src_text"
android:layout_height="36dip"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
android:singleLine="true"
android:ellipsize="end"
android:background="@null"
android:inputType="text|textAutoComplete|textNoSuggestions"
android:imeOptions="actionSearch"
android:dropDownHeight="wrap_content"
android:dropDownAnchor="@id/search_edit_frame"
android:dropDownVerticalOffset="0dip"
android:dropDownHorizontalOffset="0dip" />
これはSearchViewの内部クラスSearchAutoCompleteです.彼はAutoCompleteTextViewを継承しています.では、AutoCompleteTextViewのスタイルを変更すればいいです.試してみましょう.
効果: