我正在尝试在我的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" >
答案 0 :(得分:1)
您使用的是http://developer.android.com/reference/android/view/LayoutInflater.html#inflate(int,android.view.ViewGroup)
膨胀布局?如果是这样,你提供了根视图吗?如果传入null,则将从GridLayout中删除所有layout_
属性。