fragment_setting.xml 1.12 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <RadioGroup
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp">

        <RadioButton
            android:id="@+id/cacheMaxCount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/cache_max_count" />

        <RadioButton
            android:id="@+id/cacheMaxSize"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/cache_max_size" />

    </RadioGroup>

    <Button
        android:id="@+id/clearCache"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="20dp"
        android:text="@string/cache_clear"
        android:onClick="onClick"/>

</LinearLayout>