jlyrics-android/app/src/main/res/layout/cancel_fab.xml
2019-12-16 00:14:48 +05:00

34 lines
1.4 KiB
XML

<!--
~ Copyright 2019 bernd32
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:layout_width="wrap_content"
android:layout_height="48dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_marginBottom="24dp"
android:backgroundTint="@color/colorAccent"
android:text="@string/cancel"
android:textAlignment="center"
android:textColor="?android:attr/textColorPrimaryInverse"
android:visibility="invisible"
app:icon="@drawable/ic_cancel_black_24dp"
app:iconTint="?android:attr/textColorPrimaryInverse"
tools:visibility="visible"
android:onClick="onLoadCancel"
android:scaleX="0.7"
android:scaleY="0.7"
xmlns:android="http://schemas.android.com/apk/res/android" />