我在收音机组内使用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'
}