如何讓我的複選框在右側對齊並在文本後面有複選框符號?我瞄準API 15歲及以上複選框對齊權
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout1">
<TextView
android:text="@string/please_choose_an_area"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/textView2"
android:textSize="20sp"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="15dp" />
<CheckBox
android:text="All"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/checkBox1"
android:layout_marginRight="15dp" />
</LinearLayout>
檢查,如果你可以用'CheckedTextView'。 – jaibatrik
檢查此問題http://stackoverflow.com/questions/3156781/how-to-show-android-checkbox-at-right-side – Amy