gazlaws-dev / codeboard

Codeboard App
Other
554 stars 114 forks source link

Button files for color selector in activity_main are missing #28

Closed paritosh9199 closed 6 years ago

paritosh9199 commented 6 years ago

selectmd, selectml, selectblack, selectwhite, selectblue, selectpurple files are missing in drawable directory! But they are being referenced in the activity_main file.

paritosh9199 commented 6 years ago

`<RadioGroup android:id="@+id/radiogroupcolour" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="24dp" android:layout_marginTop="8dp">

        <RadioButton
            android:id="@+id/material_dark_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:button="@drawable/selectmd"
            android:onClick="closeKeyboard"
            android:text=" Material Dark"

            />

        <RadioButton
            android:id="@+id/material_light_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:button="@drawable/selectml"
            android:onClick="closeKeyboard"
            android:text=" Material Light" />

        <RadioButton
            android:id="@+id/black_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:button="@drawable/selectblack"
            android:onClick="closeKeyboard"
            android:text=" Pure Black" />

        <RadioButton
            android:id="@+id/white_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:button="@drawable/selectwhite"
            android:onClick="closeKeyboard"
            android:text=" White" />

        <RadioButton
            android:id="@+id/blue_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:button="@drawable/selectblue"
            android:onClick="closeKeyboard"
            android:text=" Blue" />

        <RadioButton
            android:id="@+id/purple_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_marginTop="16dp"
            android:button="@drawable/selectpurple"
            android:checked="false"
            android:onClick="closeKeyboard"
            android:text=" Purple" />

    </RadioGroup>`