我关注了Hello Views,Google Map View,现在我想TextView
在MapView
. 我只更改了布局文件并将和main.xml
放置在一个垂直的. 我的 Eclipse 设置为自动构建它,但是当我在模拟器中运行应用程序时,我只能看到.MapView
TextView
LinearLayout
MapView
如何在 aTextView
下面添加 a MapView
?
这是我的布局main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="my key"
/>
<TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="My TextView"
/>
</LinearLayout>