marginLeft似乎不适用于我的GridLayout

时间:2013-02-01 18:42:16

标签: android grid-layout

我正在尝试在我的Android应用程序中使用GridLayout,我希望它从屏幕左侧开始160dp。当我设置android:layout_marginLeft="160dp"时,我在Eclipse的GraphicalLayout选项卡中看到了这种情况,但是当我构建应用程序时,它并没有反映出该边距。

我错过了什么吗?

我的GridLayout代码的其余部分:

<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/GridLayout3"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_marginLeft="160dp"
    android:columnCount="4"
    android:orientation="horizontal" >

1 个答案:

答案 0 :(得分:1)

您使用的是http://developer.android.com/reference/android/view/LayoutInflater.html#inflate(int,android.view.ViewGroup) 膨胀布局?如果是这样,你提供了根视图吗?如果传入null,则将从GridLayout中删除所有layout_属性。