アプリに Switch ウィジェットを実装したかったのですが、機能は完璧に機能します。私がスイッチで抱えている問題は、親指のオフテキスト (「OFF」) です。「OFF」は親指よりも大きいサイズです。つまみのサイズを大きくしたい (またはつまみのテキストを小さくしたい) のですが、奇妙な理由でどちらもできません。これは次のようになります。
スイッチのクローズアップ
スクリーンショット
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>
コード自体に問題はないと思います。アクティビティ コードで行っていることは、Switch ビューを見つけて setOnCheckedChangeListener メソッドを変更することだけです。