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 に答える