refactor EditProfileActivity layout (#1110)

* refactor EditProfileActivity layout

* refactor EditProfileActivity layout
This commit is contained in:
Konrad Pozniak 2019-03-08 20:27:16 +01:00 committed by GitHub
parent 507ffb1b41
commit 830b3802a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,21 +14,17 @@
android:layout_height="match_parent" android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"> app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout <androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusableInTouchMode="true" android:focusableInTouchMode="true">
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView <ImageView
android:id="@+id/headerPreview" android:id="@+id/headerPreview"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="200dp" android:layout_height="200dp"
android:contentDescription="@null" /> android:contentDescription="@null"
app:layout_constraintTop_toTopOf="parent" />
<ImageButton <ImageButton
android:id="@+id/headerButton" android:id="@+id/headerButton"
@ -36,44 +32,41 @@
android:layout_height="200dp" android:layout_height="200dp"
android:background="#66000000" android:background="#66000000"
android:contentDescription="@string/label_header" android:contentDescription="@string/label_header"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_add_a_photo_32dp" /> app:srcCompat="@drawable/ic_add_a_photo_32dp" />
<ProgressBar <ProgressBar
android:id="@+id/headerProgressBar" android:id="@+id/headerProgressBar"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminate="true" android:indeterminate="true"
android:visibility="gone" /> android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@id/headerPreview"
</RelativeLayout> app:layout_constraintEnd_toEndOf="@id/headerPreview"
app:layout_constraintStart_toStartOf="@id/headerPreview"
app:layout_constraintTop_toTopOf="@id/headerPreview" />
<LinearLayout
android:layout_width="@dimen/timeline_width"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="-40dp"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp">
<com.keylesspalace.tusky.view.RoundedImageView <com.keylesspalace.tusky.view.RoundedImageView
android:id="@+id/avatarPreview" android:id="@+id/avatarPreview"
android:layout_width="80dp" android:layout_width="80dp"
android:layout_height="80dp" android:layout_height="80dp"
android:contentDescription="@null" /> android:layout_marginStart="16dp"
android:contentDescription="@null"
app:layout_constraintBottom_toBottomOf="@id/headerPreview"
app:layout_constraintStart_toStartOf="@id/contentContainer"
app:layout_constraintTop_toBottomOf="@id/headerPreview" />
<ImageButton <ImageButton
android:id="@+id/avatarButton" android:id="@+id/avatarButton"
android:layout_width="80dp" android:layout_width="80dp"
android:layout_height="80dp" android:layout_height="80dp"
android:layout_marginStart="16dp"
android:background="@drawable/round_button" android:background="@drawable/round_button"
android:contentDescription="@string/label_avatar" android:contentDescription="@string/label_avatar"
android:elevation="4dp" android:elevation="4dp"
app:layout_constraintBottom_toBottomOf="@id/headerPreview"
app:layout_constraintStart_toStartOf="@id/contentContainer"
app:layout_constraintTop_toBottomOf="@id/headerPreview"
app:srcCompat="@drawable/ic_add_a_photo_32dp" /> app:srcCompat="@drawable/ic_add_a_photo_32dp" />
<ProgressBar <ProgressBar
@ -82,9 +75,21 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" android:layout_centerInParent="true"
android:indeterminate="true" android:indeterminate="true"
android:visibility="gone" /> android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@id/avatarPreview"
app:layout_constraintEnd_toEndOf="@id/avatarPreview"
app:layout_constraintStart_toStartOf="@id/avatarPreview"
app:layout_constraintTop_toTopOf="@id/avatarPreview" />
</RelativeLayout> <LinearLayout
android:id="@+id/contentContainer"
android:layout_width="@dimen/timeline_width"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/avatarPreview">
<com.google.android.material.textfield.TextInputLayout <com.google.android.material.textfield.TextInputLayout
style="@style/TuskyTextInput" style="@style/TuskyTextInput"
@ -175,7 +180,7 @@
android:textColor="#fff" /> android:textColor="#fff" />
</LinearLayout> </LinearLayout>
</LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView> </androidx.core.widget.NestedScrollView>