157 lines
7.0 KiB
XML
157 lines
7.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="0dp"
|
|
app:elevation="0dp">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar"
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
|
app:title="@string/profile"
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="128dp"
|
|
android:layout_marginEnd="128dp"
|
|
android:orientation="vertical"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardUseCompatPadding="true">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/imageContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/bannerImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="228dp"
|
|
android:scaleType="centerCrop"
|
|
app:srcCompat="@drawable/material_design_default" />
|
|
|
|
<View
|
|
android:id="@+id/bannerSelect"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="228dp"
|
|
android:background="@color/twenty_percent_black_overlay" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:background="?roundSelector"
|
|
android:padding="16dp"
|
|
app:tint="@color/md_white_1000"
|
|
app:srcCompat="@drawable/ic_add_photo_white_24dp" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:layout_margin="8dp">
|
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
android:id="@+id/userImage"
|
|
android:layout_width="72dp"
|
|
android:layout_height="72dp"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
app:civ_border="false"
|
|
app:civ_shadow="false"
|
|
app:srcCompat="@drawable/ic_person_flat" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="16dp"
|
|
android:gravity="center"
|
|
android:padding="12dp"
|
|
android:src="@drawable/ic_add_photo_white_24dp"
|
|
app:tint="?iconColor" />
|
|
</FrameLayout>
|
|
|
|
</FrameLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/nameContainer"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
app:hintEnabled="true">
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:hint="@string/my_name"
|
|
android:inputType="textPersonName|textCapWords|text"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/bioContainer"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
app:hintEnabled="true">
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/bio"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:hint="@string/bio"
|
|
android:inputType="textPersonName|textCapWords|text"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
android:visibility="gone" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
android:id="@+id/next"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:layout_margin="16dp"
|
|
android:gravity="center"
|
|
android:padding="16dp"
|
|
android:text="@string/save"
|
|
app:icon="@drawable/ic_save_white_24dp"
|
|
app:iconGravity="textStart" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |