0
A
答えて
1
ちょうどあなたのツールバーの一部、このようなものとして、エディットテキストを追加します。
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryColor"
android:elevation="4dp">
<EditText
android:id="@+id/searchEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>
</android.support.v7.widget.Toolbar>
0
このXMLコードを試してみてください。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.simple.activity.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/myAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.SearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:background="@color/white"
android:queryHint="@string/search_hint"
app:iconifiedByDefault="false"
app:theme="@style/AppTheme.SearchView" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:background="@drawable/ic_arrow_forward_black_24dp"/>
</FrameLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.DrawerLayout>
関連する問題
- 1. jqueryのは、(ECCを追加、削除、検索。)ナビゲーションバーを追加jqgrid
- 2. ナビゲーションバーに検索バーを追加するには
- 3. ナビゲーションバーの下に検索バーを追加しますか?
- 4. カスタムアイテムをナビゲーションバーに追加する方法
- 5. 弾性検索方法新しいフィールドを追加し、既存のフィールド
- 6. ナビゲーションバーのタイトルを設定する方法
- 7. ナビゲーションバーの戻るボタンとタイトルの間にアイコンを追加
- 8. ナビゲーションバーに追加された検索バーの表示
- 9. ActionBarSherlockにタイトルを追加する方法
- 10. オーダーライン[prdocutフィールド]で余分な検索を追加するには?
- 11. ナビゲーションバーの横にある検索バーを移動する方法
- 12. ナビゲーションバーを追加する方法
- 13. ハイカーのタイトルの検索方法
- 14. 検索ボックスをacfマップに追加する方法は?
- 15. URLに検索文字列を追加する方法は?
- 16. LDAPに追加の検索クエリを適用する方法
- 17. iosのチタン検索バーにリターンキーを追加する方法
- 18. autoconfのライブラリ検索パスにディレクトリを追加する方法
- 19. 隠し検索バーの非表示ナビゲーションバーのタイトル
- 20. Vtigerアカウント内の検索フィールドを追加する
- 21. xamarinフォームのコンテンツページにタイトルをプログラムで追加する方法は?
- 22. スイッチボタン、タイトル、サブタイトルに2つのテキストを追加する方法は?
- 23. blackberryリストフィールドに検索フィールドを追加する
- 24. 検索結果ページにACFフィールドを追加するWordPress
- 25. Datatableオブジェクトにカスタム検索フィールドを追加する
- 26. 紺碧の検索のフィールドに基づいて検索する方法は?
- 27. ナビゲーションバーに戻るボタンを追加する方法は?
- 28. 検索を追加するには?
- 29. ナビゲーションバーの検索ビュー
- 30. アンドロイドスタジオに既存のアンドロイドプロジェクトを追加してビルドする方法
独自の 'AppBar'を定義し、'のEditTextが含まれますそれで。 – Dennis
https://developer.android.com/guide/topics/search/search-dialog.html – Dennis
これは 'SearchView'を使って行うことができます。レイアウトにSearchViewを追加し、ツールバーにレイアウトを追加し( 'android.support.v7.widget.Toolbar'、プロジェクトにandroid.support.v7を追加)、ツールバーを' supportActionBar'として設定します。 – Abhi