0
在我的片段中,我使用searchView(不在工具欄中)。 我的佈局片段:SearchView在片段中(非工具欄中)無法刪除下劃線
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.SearchView
android:id="@+id/searchView"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_marginEnd="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
app:queryHint="Some hint"
android:layout_marginStart="20dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:searchHintIcon="@null" />
</android.support.constraint.ConstraintLayout>
在我的片段代碼:
searchView = view.findViewById(R.id.searchView);
SearchManager searchManager = (SearchManager) getActivity().getSystemService(Context.SEARCH_SERVICE);
searchView.setSearchableInfo(searchManager.getSearchableInfo(getActivity().getComponentName()));
searchView.setSearchableInfo(searchManager.getSearchableInfo(getActivity().getComponentName()));
searchView.setSuggestionsAdapter(new SearchCatalogSuggestionsAdapter(getActivity()));
searchView.setBackgroundColor(Color.parseColor("#FFFFFF"));
正如你可以看到我嘗試
searchView.setBackgroundColor(Color.parseColor("#FFFFFF"));
但強調沒有幫助。 這裏截圖:
嘗試將'searchview'設置爲null(適用於'AutoCompleteTextView')。 –
@LalitSinghFauzdar SearchView實際上是一個LinearLayout,並且它的背景設置在EditText裏面,所以這是行不通的。 –
android:background =「@ null」 - 沒有幫助 – Alexei