<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <RadioButton
        android:id="@+id/test_radiobutton_android_button_tint"
        android:background="?android:attr/colorBackground"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:buttonTint="@color/radiobutton_themeable_attribute_color"/>
    <RadioButton
        android:id="@+id/test_radiobutton_app_button_tint"
        android:background="?android:attr/colorBackground"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:buttonTint="@color/radiobutton_themeable_attribute_color"/>
</LinearLayout>
