我创建了searchView:
<android.support.constraint.ConstraintLayout android:id="@+id/root"
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">
<SearchView
android:id="@+id/search_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:queryHint="Hint text"
app:layout_constraintBottom_toTopOf="@+id/recycler_view"
app:layout_constraintEnd_toStartOf="@+id/button"
app:layout_constraintStart_toStartOf="@+id/toolbar"
app:layout_constraintTop_toTopOf="parent"/>
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="0dp"
android:layout_height="..."
local:layout_constraintEnd_toEndOf="parent"
local:layout_constraintStart_toStartOf="parent"
local:layout_constraintTop_toTopOf="parent"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
我有一个toolbar
,其中一侧有一个按钮,另一侧有searchView
(使用约束)。它按照我的意愿正确显示,但是当我尝试设置提示时,我遇到了问题。
mSearchView = findViewById(R.id.search_view);
mSearchView.setQueryHint("TEST");
当我打印出Log.d(TAG, "test: "+mSearchView.getQueryHint());
时,我得到了期望的结果“TEST”,但奇怪的是,在SearchView
queryHint中是“搜索...”(在视觉上可见)
答案 0 :(得分:0)
试试这个
{{1}}