Skip to content
Snippets Groups Projects
Commit 65de8707 authored by Torsten Grote's avatar Torsten Grote
Browse files

Merge branch '1225-improve-setup-ux' into 'master'

Remove circle, make button flat to improve setup UX

Closes #1225

See merge request akwizgran/briar!792
parents 0ad94158 dc5bd39c
No related branches found
No related tags found
No related merge requests found
...@@ -89,9 +89,9 @@ abstract class PowerView extends ConstraintLayout { ...@@ -89,9 +89,9 @@ abstract class PowerView extends ConstraintLayout {
public void setChecked(boolean checked) { public void setChecked(boolean checked) {
this.checked = checked; this.checked = checked;
if (checked) { if (checked) {
checkImage.setImageResource(R.drawable.ic_check_white); checkImage.setVisibility(VISIBLE);
} else { } else {
checkImage.setImageResource(R.drawable.contact_disconnected); checkImage.setVisibility(INVISIBLE);
} }
if (onCheckedChangedListener != null) { if (onCheckedChangedListener != null) {
onCheckedChangedListener.onCheckedChanged(); onCheckedChangedListener.onCheckedChanged();
......
...@@ -20,10 +20,12 @@ ...@@ -20,10 +20,12 @@
<ImageView <ImageView
android:id="@+id/checkImage" android:id="@+id/checkImage"
android:layout_width="wrap_content" android:layout_width="24dp"
android:layout_height="wrap_content" android:layout_height="24dp"
android:src="@drawable/contact_disconnected" android:layout_margin="8dp"
android:src="@drawable/ic_check_white"
android:tint="?colorControlNormal" android:tint="?colorControlNormal"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="@+id/button" app:layout_constraintBottom_toBottomOf="@+id/button"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/button" app:layout_constraintTop_toTopOf="@+id/button"
...@@ -34,9 +36,7 @@ ...@@ -34,9 +36,7 @@
style="@style/BriarButton.Default" style="@style/BriarButton.Default"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginEnd="8dp" android:layout_margin="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toStartOf="@+id/helpButton" app:layout_constraintEnd_toStartOf="@+id/helpButton"
app:layout_constraintStart_toEndOf="@+id/checkImage" app:layout_constraintStart_toEndOf="@+id/checkImage"
app:layout_constraintTop_toBottomOf="@+id/textView" app:layout_constraintTop_toBottomOf="@+id/textView"
...@@ -44,11 +44,13 @@ ...@@ -44,11 +44,13 @@
<ImageButton <ImageButton
android:id="@+id/helpButton" android:id="@+id/helpButton"
style="@style/BriarButton.Default" style="@style/BriarButtonFlat.Positive"
android:layout_width="48dp" android:layout_width="24dp"
android:layout_height="wrap_content" android:layout_height="24dp"
android:layout_margin="8dp"
android:contentDescription="@string/help" android:contentDescription="@string/help"
android:src="@drawable/ic_help_outline_white" android:src="@drawable/ic_help_outline_white"
android:tint="@color/briar_button_positive"
app:layout_constraintBottom_toBottomOf="@+id/button" app:layout_constraintBottom_toBottomOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/button"/> app:layout_constraintTop_toTopOf="@+id/button"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment