我正在尝试将按钮对齐到其所在布局大小的右侧。我已经尝试过重力,但它不适合我。有什么建议吗?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/LayoutEditText"
android:orientation="horizontal">
<Button
android:id="@+id/buttonInvertirTick"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="20dp"
android:background="@drawable/success"
android:gravity="right"/>
</LinearLayout>
您必须使用
android:layout_gravity
,因为这是标记元素相对于父元素的位置的标记,而不是android:gravity
,指示其视图的位置(例如,您在按钮上的文本,属于观点相同)。