我想在SearchView周围(更确切地说是在SearchView中出现的文本周围)使用这种“花哨的” TextInputLayout。
默认情况下,在TextInputLayout中,仅EditText(或后代)可以正常工作(例如,个性化错误消息或提示等的选项)
在.xml文件中:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<SearchView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
实际输出是一个简单的SearchView(与不使用TextInputLayout时完全相同),但是我希望可以使用更多可自定义的文本。