Switchcompat没有显示Switch

时间:2014-10-25 15:23:55

标签: android android-5.0-lollipop android-appcompat

我正在尝试使用最新的appcompat,它已在我的应用中针对材质设计进行了更新,以显示Lollipop(http://android-developers.blogspot.in/2014/10/appcompat-v21-material-design-for-pre.html)中显示的切换视图,问题是切换未显示。我的SDKmin为14,最大值为21.我在布局中使用以下代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/fragment_scheduler"
    tools:context="com.stackoverflow.ranjith.androidprojdel.SchedulerUI">

<android.support.v7.widget.SwitchCompat
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="switch"
        app:showText="false" />

    <Button
        android:layout_width="match_parent"
        android:text="start"
        android:id="@+id/start"
        android:layout_height="wrap_content" />
</LinearLayout>

的build.gradle:

dependencies {
    compile 'com.android.support:cardview-v7:+'
    compile 'com.android.support:recyclerview-v7:+'
    compile 'com.android.support:palette-v7:+'
    compile 'com.android.support:support-v4:+'
    compile "com.android.support:appcompat-v7:21.0.+"
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

5 个答案:

答案 0 :(得分:22)

我不确定这是否是支持库中的错误,但您必须确保布局inflater的上下文是主题。

  1. 确保您的活动主题Theme.AppCompat为父
  2. 如果在ListView或RecyclerView中使用inflate SwitchCompat,则必须确保使用主题上下文创建在适配器中实例化和使用的LayoutInflater。您可以通过调用以下方法检索主题上下文:Activity.getSupportActionBar()。getThemedContext()

答案 1 :(得分:20)

我今天遇到了同样的问题,但不知何故,switchcompat在我的样本中有效。我认为app风格有问题,它应该设置为:

Theme.AppCompat

答案 2 :(得分:3)

或者,您可以使用

android:theme="@style/Theme.AppCompat"

在您的控制

答案 3 :(得分:1)

我在 styles.xml 中有一个自定义主题,但我忘记指定其父主题:

name =“ CustomTheme.switchState” 父=“ Theme.AppCompat.Light”

类似这样的东西:

custom_linear_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...

<androidx.appcompat.widget.SwitchCompat
    android:id="@+id/switch1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:text="Hello"
    android:theme="@style/CustomTheme.switchState" />

...
</LinearLayout>

style.xml

<resources>
...

name="CustomTheme.switchState" parent="Theme.AppCompat.Light">
        <item name="colorControlActivated">@color/colorOne</item>
        <item name="android:textOn">On</item>
        <item name="android:textOff">Off</item>
    </style>

...
</resources>

答案 4 :(得分:0)

好像你遇到了https://code.google.com/p/android/issues/detail?id=78262

复制布局和png,修复九补丁,你应该没问题。