0
我想實現某事像這樣:Android的地圖自定義佈局
但ListView控件是重疊我的屁股吧。防止這種行爲的最佳方法是什麼?正如你在圖片中看到的那樣,在底欄下面有一張地圖。此底部欄與Google地圖應用中的目標/目標窗口相似。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<com.google.android.gms.maps.MapView
android:id="@+id/map"
tools:layout="@layout/fragmentMap"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="2dp"
android:orientation="vertical">
<EditText
android:id="@+id/mapEditT"
android:layout_width="fill_parent"
android:layout_height="53dp"
android:layout_alignParentTop="true"
android:gravity="center|left"
android:paddingLeft="2dp"
android:paddingRight="0dp"/>
<ListView
android:id="@+id/listVi"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical">
<ImageButton
android:id="@+id/draweR"
android:layout_width="wrap_content"
android:src="@drawable/draweR"/>
<LinearLayout
android:id="@+id/infoBox"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="40dp"
android:alpha="0.1"
android:background="@android:color/black"
android:orientation="horizontal">
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="20dp"
android:text="Info"
/>
<TextView
android:id="@+id/text3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_toRightOf="@id/text2"
android:text="Info/>
</LinearLayout>
</LinearLayout>
</FrameLayout>
使用'LinearLayout'或'RelativeLayout'作爲最頂部的父母,而不是'FrameLayout' – kId 2014-08-28 16:08:56
具有u看到的答案嗎? – kId 2014-08-29 08:16:25
不,我沒有:( – user2725105 2014-08-29 11:14:55