Is there anyway to control the text position for a ToggleButton\'s on and off state? For instance, I want the text label to be left aligned when on and right aligned when of
Since ToggleButton is a subclass of TextView, try to use android:gravity="left".
android:gravity="left"
Please prefer to http://developer.android.com/reference/android/widget/TextView.html#attr_android:gravity.