LoginSignup
5
5

More than 5 years have passed since last update.

Search Interfaceでハマった

Posted at

メモ。

onSearchRequested()呼んでも検索窓出ないんだけど?

string.xmlから参照してないので動かない。

searchable.xml
<?xml version="1.0" encoding="utf-8"?>

<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:hint="ヒント"
    android:label="ラベル" />

android:label=""を定義していないので動かない。

searchable.xml
<?xml version="1.0" encoding="utf-8"?>

<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:hint="@string/hint"
 />

はいはい、バルスバルス。

参考

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5