Android有<fragment> ingore padding - Java

时间:2015-09-01 17:41:00

标签: java android android-fragments

我有一个像这样的xml文件

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"

<fragment
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:id="@+id/map"
    class="com.google.android.gms.maps.SupportMapFragment"
    android:layout_marginTop="52dp"
    android:layout_below="@+id/callText"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginLeft="-16dp"
    android:layout_marginRight="-16dp"/>

如何让视图填充整个宽度?

由于

0 个答案:

没有答案