0

アプリに 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 メソッドを変更することだけです。

4

1 に答える 1

0

次のようにタグを設定android:textSizeしてみてください。Switch

    <Switch
        android:id="@+id/lessonModeToggleSlider"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:textSize="text_size_here" <----- this line
        android:showText="true"/>

Switchクラス extends CompoundButton、 which extends Button、 which extends 、これTextViewを可能にします。setTextSize()コードでメソッドを使用して、プログラムでテキスト サイズを設定することもできます。

于 2016-02-17T06:11:44.000 に答える