位置复选框到右上角

时间:2016-02-27 13:31:17

标签: android

我想创建一个复选框,在我的Android应用中选择颜色。然而,复选框显示在最左侧的中心。如何将它放在右上角? This is how I get

1 个答案:

答案 0 :(得分:0)

试试这个:

<LinearLayout
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"
     android:orientation="horizontal">
     <CheckBox 
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:background="@drawable/red_button"
         android:layout_weight="1"
         android:id="@+id/red1"
         android:layout_marginLeft="5dp"
         android:layout_marginRight="5dp"
         android:checked="false"
         android:gravity="right" />

</LinearLayout>

希望它有所帮助!!!