私は、以下のようなUIを描画する必要があるAndroidプロジェクトに取り組んでいます。Androidの画面を半分に分割する必要があります。上半分で私はグーグルmpsを表示する必要があります。下半分では、誰かがをクリックするとすぐにユーザー情報を表示する必要がありますGoogle Maps
。上半分の部分が完了し、それが私のために機能しています。
問題文:-
下半分のUIのデザインに問題があります。main.xml file
以下のUIはどうあるべきですか。クリックすると、Android画面の下半分に表示されますmarkers on the Map
。information
以下は、Android画面の下半分の画像とユーザー情報を含むペイントで作成したデザインです。
これは私が現在持っているものでmain.xml file
あり、上の画像のように変更する必要があります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:apiKey="0vAX8Xe9xjo5gkFNEEIH7KdHkNZNJWNnsjUPKkQ"
android:clickable="true"
android:enabled="true" />
<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="TextView" />
</LinearLayout>