我想ToogleButton
在按下时变成绿色/白色的那个栏的右侧对齐文本。
更明确地说,我将发布代码以及我现在得到的结果。
<ToggleButton android:id="@+id/ToggleButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout_gravity="center_vertical"
android:textOff="Off"
android:textOn="On"/>
ToggleButton onOffButton = (ToggleButton) findViewById(R.id.ToggleButton01);
onOffButton.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);
onOffButton.setPadding(0, 0, 5, 0);
结果:
我希望栏和文本不重叠。