我刚接触到android并且我被困在一些我觉得它很简单的东西但我感到很困惑.. 我需要在操作栏/工具栏中但在我的Relativelayout中创建自定义searchView。问题是,我不知道如何定制背景,文本输入颜色,XML中的搜索图标颜色或仅仅是它们的属性。目前我在手机上,无法显示我的代码。有谁告诉我如何定制它?也许向我展示我可以遵循的任何教程?在此先感谢!!!!
答案 0 :(得分:5)
在RelativeLayout
-
<android.support.v7.widget.SearchView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/colorAsh"
android:backgroundTint="@color/colorAsh"
android:searchIcon="@drawable/ic_search"
android:commitIcon="@drawable/ic_commit"
android:searchHintIcon="@drawable/ic_search"
android:closeIcon="@drawable/ic_close"
android:goIcon="@drawable/ic_go">
</android.support.v7.widget.SearchView>
别忘了更改这些图标。
按照此SearchView了解SearchView
的每个选项。
答案 1 :(得分:2)
我建议你看看我在这里为你自己的SearchBar设计的答案。
我无法理解,但我无法设置Google默认的SearchBar,因此我必须创建自己的搜索栏。
以下是我的表现:
Styling Search View on Android (min21)
如果你想实现一个InstantSearch算法,请关注这位伟大的作者和他的项目(看看接受的答案):
How to filter a RecyclerView with a SearchView
如果您需要进一步的帮助,请发表评论。 如果答案也有助于我的回答:P
更新:以下是Google在搜索视图中的实施,只是为了向您提供更多信息:https://developer.android.com/guide/topics/search/search-dialog.html
度过愉快的一天:)
答案 2 :(得分:1)
只需做自己的搜索视图,这很简单。
custom_searchview.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:gravity="center_vertical">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:adjustViewBounds="true"
android:src="@drawable/ic_search_white"/>
<EditText
android:id="@+id/edt_search_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="text"
android:imeOptions="actionSearch"
android:hint="@string/by_name"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:lines="1"
android:textColorHint="@color/colorTextGrey"
android:textColor="@color/white"
android:textSize="14sp"
android:background="@android:color/transparent"/>
<ImageView
android:id="@+id/iv_clear_text"
android:layout_width="25dp"
android:layout_height="25dp"
android:adjustViewBounds="true"
android:visibility="gone"
android:src="@drawable/ic_clear"/>
</LinearLayout>
然后,您可以在活动布局文件中包含此布局。这是一个简单的布局,包括一个&#34;搜索图标&#34;接下来是EditText,然后是&#34;清除图标&#34;。用户键入一些文本后会显示清除图标。
然后在您的活动中,您需要在用户点击键盘上的搜索时收听,并在用户输入文字时进行收听以显示&#34;清除图标&#34;
/*search btn clicked*/
edtSearchText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
performSearch();
return true;
}
return false;
}
});
/*hide/show clear button in search view*/
edtSearchText.addTextChangedListener(searchViewTextWatcher);
TextWatcher searchViewTextWatcher = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(s.toString().trim().length()==0){
ivClearText.setVisibility(View.GONE);
} else {
ivClearText.setVisibility(View.VISIBLE);
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
};
答案 3 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".Fragment.ActiveFragment">
<LinearLayout
android:layout_margin="30dp"
android:background="@drawable/searchview_background"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:gravity="center_vertical">
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:adjustViewBounds="true"
android:visibility="gone"
android:src="@drawable/ic_search"/>
<EditText
android:padding="16dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="text"
android:imeOptions="actionSearch"
android:hint="Search Items"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:lines="1"
android:textColorHint="#653201"
android:textColor="#653201"
android:textSize="14sp"
android:background="@android:color/transparent"/>
<ImageView
android:layout_marginRight="16dp"
android:layout_width="20dp"
android:layout_height="20dp"
android:adjustViewBounds="true"
android:src="@drawable/ic_search"/>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="5dp" />
<solid android:color="#EFE0BB"/>
<stroke android:color="#EFE0BB" android:width="1dp"/>
</shape>