1

Android アプリで GridLayout を使用しようとしていますが、画面の左側から 160 dp で開始したいと考えています。設定する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" >
4

1 に答える 1