2019-05-04 16:20:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-04 20:51:31 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-05-04 16:20:14 +02:00
|
|
|
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"
|
2019-05-21 18:55:29 +02:00
|
|
|
app:strokeColor="@color/textcolor"
|
|
|
|
|
app:strokeWidth="2dp"
|
|
|
|
|
android:textColor="@color/textcolor"
|
2019-05-04 16:20:14 +02:00
|
|
|
android:text="@string/clearall"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:layout_marginStart="16dp"
|
2019-05-04 20:51:31 +02:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"/>
|
2019-05-04 16:20:14 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|