API 19

时间:2016-03-28 10:11:27

标签: android android-radiogroup android-radiobutton

我在收音机组内使用3个radiobutton。当我在API 19中预览它时,我的渲染问题是"无效的可绘制矢量" 无法解析文件C:\ Users \ AndroidStudioProjects \ Fuict1 \ app \建立\中间体\分解-AAR \ com.android.support \程序兼容性-V7 \ 24.0.0-ALPHA1 \ RES \抽拉\ 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 个答案:

没有答案