我使用Google地图片段进行以下布局。现在我想把Scrollview放在底部,但我不知道如何。请帮我!非常感谢!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.testgoogle.MainActivity" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btn_find"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/str_btn_find" />
<AutoCompleteTextView
android:id="@+id/et_location"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/btn_find"
android:hint="@string/hnt_et_location"
android:textColorHint="#d9d7d7"
android:ems="10" >
</AutoCompleteTextView>
</RelativeLayout>
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
</LinearLayout>
答案 0 :(得分:0)
改为使用RelativeLayout
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.testgoogle.MainActivity" >
<RelativeLayout
android:id="@+id/search_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" >
<Button
android:id="@+id/btn_find"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/str_btn_find" />
<AutoCompleteTextView
android:id="@+id/et_location"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/btn_find"
android:hint="@string/hnt_et_location"
android:textColorHint="#d9d7d7"
android:ems="10" >
</AutoCompleteTextView>
</RelativeLayout>
<fragment
android:id="@+id/map"
android:layout_below="@+id/search_container"
android:layout_above="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
class="com.google.android.gms.maps.SupportMapFragment" />
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true">
<!--Your scroll view content-->
...
...
</ScrollView>
</RelativeLayout>
但注意,您的地图高度将取决于ScrollView
的高度。它应该是固定大小(即 50dp )。但ScrollView
的内容应为wrap_content
高度。