私はトップレイアウトのSearchViewを入れたいです。私はSearcViewでMyActivityを持っています。その下にはRecyclerViewがあります。私がMyActivityを開くと、最初にRecyclerViewが表示されます。 MyActivityをどのように設定すればMyActivityを開くと最初のSearchViewが表示されるのですか?Android Searchview on the top
<ScrollView
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="vertical">
<SearchView
android:layout_width="match_parent"
android:layout_height="50dp"
android:queryHint="Evento"
android:id="@+id/cercaEvento"/>
</LinearLayout>
......
</ScrollView>
置きますアクションバーやツールバーのSearchViewをあなたの問題を解決するためです。その後、常に上に残ります。 – vidulaJ
私の問題の解決策はありますか? – Fra87
うん。 SearchViewは、メニュー項目に配置する必要があります。作業コードを与えることができます。 – vidulaJ