前提・実現したいこと
android studioで検索バーに音声入力ボタン?を追加したいしたいです
発生している問題・エラーメッセージ
エラー等はなく、検索バーに音声入力ボタン?が表示されません
エラーメッセージ
該当のソースコード
JAVA ソースコード ```activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context=".MainActivity" android:background="@android:color/darker_gray"> <SearchView android:id="@+id/search_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_marginBottom="683dp" android:background="@android:color/white" android:iconifiedByDefault="false" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> </RelativeLayout> search.xml <?xml version="1.0" encoding="utf-8"?> <searchable xmlns:android="http://schemas.android.com/apk/res/android" android:label="@string/app_name" android:hint="@string/search_hint" android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" /> seachabale.xml <resources> <string name="app_name">searchonsei</string> <string name="hello_world">Hello world!</string> <string name="search_hint">入力してください</string> </resources> AndroidMainfest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.searchonsei"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.Searchonsei"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> <meta-data android:name="android.app.default_searchable" android:value=".MainActivity" /> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/> </activity> </application> </manifest> ### 補足情報(FW/ツールのバージョンなど) 初アプリ開発で、つまっていてわかりません。どうぞよろしくお願いいたします ほかに必要なものがありましたらよろしくお願いいたします。 グーグルの検索画面のような検索バーにしたいです
あなたの回答
tips
プレビュー