如何使片段完全填充屏幕宽度(使用Fill_Parent时的表观边距)

时间:2015-08-07 17:21:32

标签: android android-fragments

我正在尝试将片段插入到我的应用程序中,它本质上是一个彩色条,上面有几个按钮。但是,每当我将片段放到主xml文件上时,无论我做什么,总会有一点白色边缘。这是我在主xml中的一些片段代码示例:

    <fragment
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:name="sample"
        android:id="@+id/sample"
        tools:layout="@layout/sample"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_margin="0dp" />

即使我将边距设置为0dp而宽度设置为fill_parent,外部仍然有一个白边/边框。有没有办法让片段完全横向填充屏幕?谢谢!

1 个答案:

答案 0 :(得分:0)

您的父视图组中定义了填充和/或边距,这会导致片段的额外间距。检查包含片段的父级并删除填充:)