Switchcompat zeigt den Switch nicht an

Ich versuche, den neuesten Appcompat zu verwenden, der für das Materialdesign in meiner App aktualisiert wurde, um die in Lollipop http: //android-developers.blogspot.in/2014/10/appcompat-v21-material-design-for-pre.htm), das Problem ist, dass der Schalter nicht angezeigt wird. Mein SDKmin ist 14 und maximal 21. Ich verwende den folgenden Code im Layout:

<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'])
}

Antworten auf die Frage(4)

Ihre Antwort auf die Frage