Вертикальное выравнивание Android SwitchCompat?
В Android можно ли выровнять SwitchCompat по вертикали, то есть поместить текст над переключателем, а не слева от переключателя?
2 ответа
Решение
Ты ищешь что-то подобное..?
попробуй это
<LinearLayout
android:id="@+id/switchLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="5dp"
android:orientation="vertical">
<TextView
android:id="@+id/switchTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="Switch"/>
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:rotation="90"
android:layout_margin="10dp"
android:layout_marginLeft="3dp"
android:id="@+id/switch1" />
</LinearLayout>
Это не похоже на это. Вы можете обернуть TextView и SwitchCompat с LinearLayout, чтобы получить результат, который вы хотите.