patrickfav/under-the-hood

View on GitHub
hood-core/src/main/res/layout/hoodlib_template_config_bool.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/HoodLibConfigWrapper">

    <LinearLayout
        android:id="@+id/inner_wrapper"
        style="@style/HoodLibConfigInnerWrapper"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/label"
            style="@style/HoodLibTextViewSingleLine"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:textAlignment="viewStart"
            tools:text="Enable debug info"
            tools:ignore="RtlCompat"/>

        <Switch
            android:id="@+id/config_switch"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>
</FrameLayout>