SwitchCompat не отображается на устройстве
Я пытаюсь использовать SwitchCompat, и он отображается в представлении "Дизайн" в Android Studio, но на моем Galaxy S4 (с версией 5.0.1) он не отображается. Вот соответствующий код:
activity.xml
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="20dp"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/monitoring_text"
android:id="@+id/textView8"
android:layout_centerHorizontal="true" />
<android.support.v7.widget.SwitchCompat
android:id="@+id/monitoring_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
app:showText="false"
android:layout_alignParentStart="true"
android:layout_below="@+id/textView8"
android:layout_centerHorizontal="true" />
</RelativeLayout>
build.gradle
dependencies {
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
}
1 ответ
Решение
Вот как я наконец заработал:
1 - Загрузите репозиторий поддержки Android
2 - Добавьте xmlns:app="http://schemas.android.com/apk/res-auto" в XML своей активности
3 - Используйте версии виджетов AppCompat в своей деятельности, например. import android.support.v7.widget.SwitchCompat;
4. Убедитесь, что ваши темы в файлах styles.xml и AndroidManifest.xml установлены на одну из тем AppCompat.
5 - Если вы получаете ошибки, попробуйте сделать недействительным кеш и перезапустить, чтобы ваши ресурсы R были сброшены.