10

我觉得这一定是以前问过的,但我找不到。

我想要一个LinearLayout这样的东西,一切都对齐到右边和底部。

我试过了:

    android:gravity="right | bottom"
    android:gravity="right + bottom"
    android:gravity="right & bottom"
    android:gravity="right, bottom"
    android:gravity="right bottom"

所有这些产生

 Error: String types not allowed (at 'gravity' with value 'right, bottom').

我想我可以在子元素上使用边距,但我宁愿不这样做。

4

1 回答 1

23

格拉。这是空间。正确的语法是

    android:gravity="right|bottom"

如果 Eclipse 看到你正在输入一个字符串,我希望它会有这样的建议。像

Error: String types not allowed (at 'gravity' with value 'right, bottom').
If you want to enter multiple values, use the syntax "value1|value2"
于 2012-08-04T15:19:12.740 回答