Проблема рендеринга RadioButton в API 19

Я использую 3 радио кнопки в группе радио. При предварительном просмотре в API 19 возникает проблема рендеринга: "Недопустимый нарисованный вектор" и не удалось выполнить синтаксический анализ файла C:\Users\AndroidStudioProjects\Fuict1\app\build\ промежуточный тип \exploded-aar\com.android.support\appcompat. -v7\24.0.0-альфа1 \ Реза \ вытяжка \ abc_btn_radio_material.xml

XML:

 <RadioGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:id="@+id/RadioGroup"
    android:gravity="center"
    android:background="#ffffffff">


 <RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/Online"
    android:text="Online"
   />

<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/Sd"
    android:text="StreetFood"
    />

<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/Rt"
    android:text="Restaurant"
    />

</RadioGroup>

зависимости:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
compile 'com.mcxiaoke.volley:library:1.0.19'
 }

0 ответов

Другие вопросы по тегам