当我使用0dp布局宽度

时间:2016-04-25 02:23:32

标签: android android-layout

我想在我的应用程序上放置一个地图,然后在其上添加一个文本字段和一个按钮。下面是我的xml文件。启动此应用程序后,地图会正确显示在屏幕上,但文本字段和按钮不在那里。即使删除地图,它们也不会显示。我在这里想念的是什么?

<?xml version="1.0" encoding="utf-8"?>
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context="com.lenovo.mds.lenovopoc.MainActivity">

<com.amap.api.maps2d.MapView
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
<EditText
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.70" />
<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="button"
    android:layout_weight="0.70"/>
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

RelativeLayouts不支持其子级layout_weight。如果您想使用它,请更改为LinearLayout。我不知道layout_weight是否接受.70格式的数字。

答案 1 :(得分:1)

你不应该在RelativeLayout中使用layout_weight。如果您的意思是使用LinearLayout,MapView中的match_parent将占用所有空格,因此您可以为其分配layout_weight