diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-04 12:17:55 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-04 20:13:18 +0530 |
commit | 159e8967b637623af5eb73306fdafc99ef98d17e (patch) | |
tree | e22223b9cbfeee75b37bf463ef2f9771a7c0d407 /app/src/main/res | |
parent | be47f13d75e4e5bae8dc4c260272dff002b35e80 (diff) |
Redesign onboarding fragment
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/fragment_to_clone_or_not.xml | 141 |
1 files changed, 70 insertions, 71 deletions
diff --git a/app/src/main/res/layout/fragment_to_clone_or_not.xml b/app/src/main/res/layout/fragment_to_clone_or_not.xml index cef35e1f..045d8d1e 100644 --- a/app/src/main/res/layout/fragment_to_clone_or_not.xml +++ b/app/src/main/res/layout/fragment_to_clone_or_not.xml @@ -1,81 +1,80 @@ -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" + xmlns:app="http://schemas.android.com/apk/res-auto" android:background="?attr/colorPrimary" - android:orientation="vertical" - tools:context="com.zeapo.pwdstore.PasswordStore"> + android:orientation="vertical"> - <RelativeLayout - android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1"> + <androidx.appcompat.widget.AppCompatImageView + android:id="@+id/app_icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:src="@mipmap/ic_launcher" + android:contentDescription="@string/app_icon_hint" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" /> - <androidx.appcompat.widget.AppCompatImageView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:id="@+id/imageView" - android:layout_gravity="center" - android:src="@mipmap/ic_launcher" - android:contentDescription="@string/app_icon_hint" - android:layout_centerVertical="true" - android:layout_centerHorizontal="true" /> + <androidx.appcompat.widget.AppCompatTextView + android:id="@+id/app_name" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceLarge" + android:text="@string/app_name" + android:layout_below="@+id/app_icon" + android:layout_centerHorizontal="true" + android:textColor="@android:color/white" + android:textStyle="bold" + app:layout_constraintTop_toBottomOf="@+id/app_icon" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" /> - <androidx.appcompat.widget.AppCompatTextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textAppearance="?android:attr/textAppearanceLarge" - android:text="@string/app_name" - android:layout_below="@+id/imageView" - android:layout_centerHorizontal="true" - android:textColor="@android:color/white" - android:textStyle="bold"/> + <com.google.android.material.button.MaterialButton + style="@style/Widget.MaterialComponents.Button.TextButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:onClick="openSettings" + android:text="@string/action_settings" + android:textColor="@android:color/white" + android:layout_alignParentTop="true" + android:layout_alignParentEnd="true" + android:layout_marginEnd="@dimen/activity_horizontal_margin" + android:textAllCaps="true" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="parent" /> - <Button - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:onClick="openSettings" - style="?android:attr/borderlessButtonStyle" - android:text="@string/action_settings" - android:textColor="@android:color/white" - android:layout_alignParentTop="true" - android:layout_alignParentEnd="true" - android:layout_marginEnd="@dimen/activity_horizontal_margin" - android:layout_marginTop="@dimen/activity_vertical_margin" - android:textAllCaps="true" - tools:ignore="RelativeOverlap" /> - </RelativeLayout> + <com.google.android.material.button.MaterialButton + style="@style/Widget.MaterialComponents.Button" + android:id="@+id/use_local_directory" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:onClick="createNewRepository" + android:textColor="@android:color/white" + android:text="@string/initialize" + android:textSize="12sp" + android:layout_marginTop="48dp" + app:backgroundTint="?attr/colorSecondary" + app:rippleColor="?attr/colorControlHighlight" + app:layout_constraintTop_toBottomOf="@id/app_name" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" + tools:ignore="UnusedAttribute" /> - <RelativeLayout - android:layout_width="match_parent" - android:layout_height="48dp" - android:paddingLeft="@dimen/activity_horizontal_margin" - android:paddingRight="@dimen/activity_horizontal_margin" - android:background="?android:attr/windowBackground"> - - <Button - android:layout_width="wrap_content" - android:layout_height="wrap_content" - style="?android:attr/borderlessButtonStyle" - android:backgroundTint="?android:attr/windowBackground" - android:onClick="createNewRepository" - android:text="@string/initialize" - android:layout_alignTop="@+id/main_clone_button" - android:layout_alignParentStart="true" - android:textSize="12sp" /> - <Button - android:id="@+id/main_clone_button" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - style="?android:attr/borderlessButtonStyle" - android:backgroundTint="?android:attr/windowBackground" - android:onClick="cloneExistingRepository" - android:text="@string/clone" - android:layout_alignParentBottom="true" - android:layout_alignParentEnd="true" - android:textSize="12sp" - tools:ignore="RelativeOverlap" /> + <com.google.android.material.button.MaterialButton + style="@style/Widget.MaterialComponents.Button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:onClick="cloneExistingRepository" + android:textColor="@android:color/white" + android:text="@string/clone" + android:textSize="12sp" + app:backgroundTint="?attr/colorSecondary" + app:rippleColor="?attr/colorControlHighlight" + app:layout_constraintTop_toBottomOf="@id/use_local_directory" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" /> - </RelativeLayout> - -</LinearLayout> +</androidx.constraintlayout.widget.ConstraintLayout> |