我想将搜索栏放在android的地图视图中。
任何想法请建议。
谢谢!!!
答案 0 :(得分:2)
尝试这种方式:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<SeekBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
</RelativeLayout>
您可以在任意位置设置 SeekBar ,只需将地图视图的宽度和高度设置为fill_parent
,或者设置wrap_content
为不覆盖。< / p>
答案 1 :(得分:0)
使用透明面板显示SeekBar。