我为建议行定义了一个布局,但在将AppCompat库更新到22.1后,将忽略styles.xml中定义的布局。
这是我的styles.xml文件(简化):
<style name="Theme.Upp" parent="@style/MyApp">
<item name="searchViewStyle">@style/SearchViewStyleMyApp</item>
</style>
<style name="SearchViewStyleMyApp" parent="Widget.AppCompat.SearchView">
<!-- Background for the search query section (e.g. EditText) -->
<!-- <item name="queryBackground">@android:color/black</item> -->
<!-- Background for the actions section (e.g. voice, submit) -->
<!-- <item name="submitBackground">...</item> -->
<!-- Close button icon -->
<!-- <item name="closeIcon">...</item> -->
<!-- Search button icon -->
<!-- <item name="searchIcon">...</item> -->
<!-- Go/commit button icon -->
<!-- <item name="goIcon">...</item> -->
<!-- Voice search button icon -->
<!-- <item name="voiceIcon">...</item> -->
<!-- Commit icon shown in the query suggestion row -->
<!-- <item name="commitIcon">...</item> -->
<!-- Layout for query suggestion rows -->
<item name="suggestionRowLayout">@layout/layout_suggestion_entry</item>
</style>
即使我尝试更改queryBackground,它也无法正常工作。
任何想法为什么?
答案 0 :(得分:22)
在查看最新的库源之后,它就像是为了使<style name="SearchViewStyleMyApp" parent="Widget.AppCompat.SearchView">
<!-- Background for the search query section (e.g. EditText) -->
<!-- <item name="queryBackground">@android:color/black</item> -->
...
<!-- note that this is how you stye your hint icon -->
<item name="searchHintIcon">@drawable/ab_icon_search</item>
</style>
匹配材料设计指南,因此默认样式没有下划线和提示图标。
要首先应用自己的样式,您必须在styles.xml中定义<style name="MyThemeOverlay.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="searchViewStyle">@style/SearchViewStyleMyApp</item>
</style>
样式,如下所示:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:theme="@style/MyThemeOverlay.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="4dp" />
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
然后定义ActionBar /工具栏主题叠加层:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
}
下一步是将ToolBar添加到您的布局文件中,如下所示:
Theme.AppCompat.NoActionBar
最后一步是将工具栏设置为ActionBar:
{{1}}
另请注意,您的主题必须延伸{{1}}
答案 1 :(得分:11)
如果您未使用Toolbar
,则要覆盖的样式为searchViewStyle
下的actionBarTheme
:
<style name="AppTheme" parent="Theme.AppCompat.Light">
...
<item name="actionBarTheme">@style/AppActionBarTheme</item>
</style>
<style name="AppActionBarTheme" parent="ThemeOverlay.AppCompat.ActionBar">
<item name="searchViewStyle">@style/AppActionBarSearchView</item>
</style>
<style name="AppActionBarSearchView" parent="Widget.AppCompat.SearchView.ActionBar">
<item name="queryBackground">@drawable/your_query_background</item>
<item name="submitBackground">@drawable/your_submit_background</item>
<item name="searchHintIcon">@drawable/your_search_hint_icon</item>
<item name="queryHint">your query hint</item>
</style>
答案 2 :(得分:-2)
您可以编写代码来更改其外观。 我在这篇文章中用图片解释了。您可以为您的项目参考这篇文章
您可以更改背景,搜索视图的图标,甚至清除按钮(取消按钮)
How to change searchbar cancel button image in xamarin forms