Как решить, если атрибуты хранилища не работают? - PullRequest
0 голосов
/ 27 июня 2018

Я использую фрагмент карты с MaterialAnimatedSwitch в моей деятельности. Пока нет кода Java.

В XML, когда я пытаюсь добавить атрибуты из MaterialAnimatedSwitch, сначала они не отображаются при наборе первых нескольких букв, затем, когда я просто пишу атрибуты, как показано в https://github.com/glomadrian/material-animated-switch приложение вылетает.

Я понимаю, что это как-то связано с конфликтом пространств имен как

xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:map="http://schemas.android.com/apk/res-auto"

оба участвуют.

Я пробовал использовать разные возможности, такие как определение как в корневом макете, определение одного в корне и одно в фрагменте карты и т. Д.

Но результат тот же. Приложение вылетает с журналом

java.lang.RuntimeException: 
Unable to start activity ComponentInfo
{com.example.dell.vehicledrivers/com.example.dell.vehicledrivers.MapsActivity}: 
android.view.InflateException: 
Binary XML file line #19: Binary XML file line #19: 
Error inflating class com.github.glomadrian.materialanimatedswitch.MaterialAnimatedSwitch

Я понимаю, что совершаю очень простую ошибку, но не могу найти намека на это. Как это можно решить?

EDIT

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MapsActivity" >

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    tools:context=".MapsActivity" />

<com.github.glomadrian.materialanimatedswitch.MaterialAnimatedSwitch
    android:id="@+id/driverSwitch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true"
    android:layout_marginBottom="45dp"
    android:layout_marginStart="45dp"
    app:base_release_color="@android:color/darker_gray"
    app:base_press_color="@android:color/white"
    app:ball_release_color="@android:color/darker_gray"
    app:ball_press_color="@android:color/white"
    app:icon_release="@drawable/ic_location_off_black_24dp"
    app:icon_press="@drawable/ic_location_on_black_24dp"
    />

</RelativeLayout>
...