Archived
18 lines
738 B
XML
18 lines
738 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<com.google.android.material.button.MaterialButton
|
||
|
|
android:id="@+id/buttonclearallcolours"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:backgroundTint="?attr/colorText"
|
||
|
|
android:textColor="?attr/colorBackground"
|
||
|
|
android:text="@string/clearall"
|
||
|
|
android:layout_marginTop="8dp"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginStart="16dp"
|
||
|
|
android:layout_marginEnd="16dp"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|