android开关拇指文字截止

时间:2016-02-16 19:34:38

标签: android android-studio android-linearlayout android-relativelayout android-switch

我想在我的应用中实现一个Switch小部件,该功能完美无缺。我对开关的问题是拇指上的关闭文本(“关闭”)。 “OFF”大于拇指的大小。我想增加拇指的大小(或减少拇指文本),但由于一些奇怪的原因,我无法做到。这是看起来像:

关闭开关

enter image description here

屏幕截图

enter image description here

这是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>

我不认为代码本身存在问题。我在Activity代码中所做的就是找到Switch视图来修改setOnCheckedChangeListener方法。

1 个答案:

答案 0 :(得分: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类扩展CompoundButton,扩展Button,扩展TextView,使其成为可能。您还可以尝试在代码上使用setTextSize()方法以编程方式设置文本大小。