如何在 MapView 下方添加 TextView?
我关注了 Hello Views,Google 地图视图,现在我想要在 MapView
下方添加一个 TextView
。我只更改了布局文件 main.xml
并将 MapView
和 TextView
放置在垂直的 LinearLayout
中。我的 Eclipse 设置为自动构建此应用程序,但是当我在模拟器中运行该应用程序时,我只能看到 MapView
。
如何在 MapView
下面添加 TextView
?
这是我的布局 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>
I followed Hello Views, Google Map View and now I want to add a TextView
under below the MapView
. I have only changed the layout file main.xml
and placed the MapView
and the TextView
in a vertical LinearLayout
. My Eclipse is set to build this automatically, but when I run the application in the emulator, I can only see the MapView
.
How can I add a TextView
below a MapView
?
Here is my layout 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您遇到的问题是您在
MapView
中使用android:layout_height="fill_parent"
。如果您想要的话,我不明白:
TextView
位于地图上方MapView
为TextView
留出空间在第一种情况下使用
而不是
并使用android:layout_alignParentBottom="true"
作为文本视图
。在第二种情况下,使用
android:layout_weight
。我没有打开 Eclipse,但将android:layout_weight="1"
放置到TextView
应该就足够了。The issue you have is that you are using
android:layout_height="fill_parent"
in yourMapView
.I don't get if you want:
TextView
to be over the mapMapView
to leave space for theTextView
In the first case use a
<RelativeLayout>
instead of a<LinearLayout>
and play with theandroid:layout_alignParentBottom="true"
for theTextView
.In the second case, use
android:layout_weight
. I don't have eclipse opened but placingandroid:layout_weight="1"
to theTextView
should be enough.您可能想尝试像这样的relativelayout:
我无法让MapViews与LinearLayouts很好地配合
You might like to try a RelativeLayout like:
I couldn't get MapViews to work very well with LinearLayouts
的组合
仅
和
为我工作。
Only the combination of
<TextView android:layout_alignParentBottom="true" ... />
and
<com.google.android.maps.MapView android:layout_above="@+id/MyTextView" ... />
worked for me.