2014-02-13 52 views
0

我在位於操作欄下方的活動頂部使用了searchview,問題在於這些建議顯示在搜索視圖上,因此用戶無法看到鍵入的文本搜索查看建議顯示在小部件上

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" > 

<android.support.v7.widget.SearchView 
     android:id="@+id/fragment_map.searchView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content">  
</android.support.v7.widget.SearchView> 

<RelativeLayout 
    android:layout_below="@id/fragment_map.searchView" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:id="@+id/map_container"> 

    <!-- The map fragments will go here --> 
</RelativeLayout> 
    </RelativeLayout> 
+0

固定通過添加此視圖到的RelativeLayout的底部,並把它設置到錨固<查看 機器人固定:id =「@ + id/fragment_map.dropDownAnchor」 機器人:layout_below = 「@ ID/fragment_map.searchView」 的android:layout_width = 「match_parent」 \t \t機器人:layout_height = 「0dp」 /> – user1447209

+0

如果您的問題已得到修復,然後張貼此爲答案,就可以接受它 –

回答

0

通過添加此視圖到的RelativeLayout的底部,並把它設置到錨固

<View android:id="@+id/fragment_map.dropDownAnchor"  android:layout_below="@id/fragment_map.searchView" android:layout_width="match_parent" android:layout_height="0dp" />