Remove border from FloatingActionButtons in HomeFragment and SendTransactionFragment.
This was the blue border that appeared around the rounded buttons in the mentioned screens.
This commit is contained in:
parent
941a558a08
commit
5075c59b7b
3 changed files with 6 additions and 1 deletions
|
@ -86,7 +86,7 @@ dependencies {
|
||||||
implementation 'org.bitcoinj:bitcoinj-core:0.14.3'
|
implementation 'org.bitcoinj:bitcoinj-core:0.14.3'
|
||||||
implementation 'com.moldedbits.r2d2:r2d2:1.0.1'
|
implementation 'com.moldedbits.r2d2:r2d2:1.0.1'
|
||||||
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
|
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
|
||||||
implementation 'com.afollestad.material-dialogs:core:2.0.0-rc3'
|
implementation 'com.afollestad.material-dialogs:core:2.0.0-rc7'
|
||||||
// Android Debug Database
|
// Android Debug Database
|
||||||
debugImplementation 'com.amitshekhar.android:debug-db:1.0.4'
|
debugImplementation 'com.amitshekhar.android:debug-db:1.0.4'
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
app:fabSize="auto"
|
app:fabSize="auto"
|
||||||
app:fabCustomSize="120dp"
|
app:fabCustomSize="120dp"
|
||||||
app:maxImageSize="70dp"
|
app:maxImageSize="70dp"
|
||||||
|
app:borderWidth="0dp"
|
||||||
android:backgroundTint="@color/colorReceive"
|
android:backgroundTint="@color/colorReceive"
|
||||||
android:src="@drawable/ic_receive"
|
android:src="@drawable/ic_receive"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
@ -68,6 +69,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
app:fabSize="mini"
|
app:fabSize="mini"
|
||||||
android:src="@drawable/ic_camera"
|
android:src="@drawable/ic_camera"
|
||||||
|
app:borderWidth="0dp"
|
||||||
android:backgroundTint="@color/colorSend"
|
android:backgroundTint="@color/colorSend"
|
||||||
app:layout_constraintTop_toTopOf="@id/fabSendTransaction"
|
app:layout_constraintTop_toTopOf="@id/fabSendTransaction"
|
||||||
app:layout_constraintBottom_toBottomOf="@id/fabSendTransaction"
|
app:layout_constraintBottom_toBottomOf="@id/fabSendTransaction"
|
||||||
|
@ -81,6 +83,7 @@
|
||||||
app:fabSize="auto"
|
app:fabSize="auto"
|
||||||
app:fabCustomSize="120dp"
|
app:fabCustomSize="120dp"
|
||||||
app:maxImageSize="70dp"
|
app:maxImageSize="70dp"
|
||||||
|
app:borderWidth="0dp"
|
||||||
android:backgroundTint="@color/colorSend"
|
android:backgroundTint="@color/colorSend"
|
||||||
android:src="@drawable/ic_send"
|
android:src="@drawable/ic_send"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
|
|
@ -153,6 +153,7 @@
|
||||||
app:fabCustomSize="32dp"
|
app:fabCustomSize="32dp"
|
||||||
app:maxImageSize="20dp"
|
app:maxImageSize="20dp"
|
||||||
app:srcCompat="@drawable/ic_camera"
|
app:srcCompat="@drawable/ic_camera"
|
||||||
|
app:borderWidth="0dp"
|
||||||
android:backgroundTint="@color/colorSend"
|
android:backgroundTint="@color/colorSend"
|
||||||
app:layout_constraintStart_toEndOf="@id/cameraVerticalGuideline"
|
app:layout_constraintStart_toEndOf="@id/cameraVerticalGuideline"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tvScan"/>
|
app:layout_constraintTop_toBottomOf="@+id/tvScan"/>
|
||||||
|
@ -186,6 +187,7 @@
|
||||||
app:fabCustomSize="90dp"
|
app:fabCustomSize="90dp"
|
||||||
app:maxImageSize="70dp"
|
app:maxImageSize="70dp"
|
||||||
app:srcCompat="@drawable/ic_arrow_forward"
|
app:srcCompat="@drawable/ic_arrow_forward"
|
||||||
|
app:borderWidth="0dp"
|
||||||
app:layout_constraintEnd_toEndOf="@id/vSend"
|
app:layout_constraintEnd_toEndOf="@id/vSend"
|
||||||
app:layout_constraintTop_toTopOf="@+id/vSend" />
|
app:layout_constraintTop_toTopOf="@+id/vSend" />
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue