Androidの線形レイアウトでボタンを右に揃える方法。ボタンは、レイアウト内の textView の横に貼り付けられます。
これは私のxmlファイルです。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|top">
<com.aavishkaar.quikies.widget.TypedfacedTextView
xmlns:your_namespace="http://schemas.android.com/apk/res/com.aavishkaar.qui"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="Bluetooth"
android:id="@+id/textView"
android:textSize="24sp"
android:textColor="@android:color/black"
android:gravity="center|left"
android:layout_marginLeft="15dp"
your_namespace:typeface="Roboto-Regular.ttf"
android:singleLine="false"
/>
<Button
style="?android:attr/buttonStyleSmall"
android:id="@+id/blue0"
android:layout_width="40dp"
android:layout_height="40dp"
android:text="OFF"
android:layout_gravity="center_vertical"
android:layout_marginTop="7dp"
android:layout_marginBottom="7dp"
android:background="@drawable/switch_bg_holo_light"
/>
<Button
style="?android:attr/buttonStyleSmall"
android:id="@+id/blue1"
android:layout_width="40dp"
android:layout_height="40dp"
android:text="ON"
android:layout_marginTop="7dp"
android:layout_marginBottom="7dp"
android:layout_marginRight="5dp"
android:background="@drawable/switch_thumb_activated_holo_light"
/>
</LinearLayout>