Я хотел реализовать виджет Switch в своем приложении, и функция работает отлично. Проблема с коммутатором - это отключенный текст («ВЫКЛ») на большом пальце. «ВЫКЛ» больше размера большого пальца. Я хочу увеличить размер большого пальца (или уменьшить текст большого пальца), но по какой-то нечетной причине я тоже не могу этого сделать. Вот что это выглядит следующим образом:android switch thumb text cutoff
Закройте переключатель
Screen Shot
Вот XML-файл:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/gameSettingsContainer"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
tools:context="com.example.vb1115.multchoicequestion.LaunchScreen">
<LinearLayout
android:id="@+id/lessonModeSliderContainer"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true">
<Switch
android:id="@+id/lessonModeToggleSlider"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:showText="true"/>
</LinearLayout>
<ImageView
android:id="@+id/lessonModeAnimatedArrow"
android:src="@mipmap/green_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@id/lessonModeSliderContainer"/>
</RelativeLayout>
Я надеваю Не думаю, что есть i ssue из самого кода. Все, что я делаю в своем коде активности, - это найти представление Switch для изменения метода setOnCheckedChangeListener.
проверить этот пост http://stackoverflow.com/questions/36364153/cant-change-the-textsize-of-the-thumb-of-switchcompat-widget/36418921#36418921 – Bharatesh