aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/res/layout/activity_edit_profile.xml
blob: 2da6f923f0bf95d12412a1379a09cb889c264bdc (plain) (tree)
1
2
3
4
5
6
7
                                      
                                                                                                               




                                                            







                                                                  

                                                                             
                                               













                                                                     
 

                                                      
                                          
                                           

                                                                     













                                                                                    
                                                         
 
                                                      


                                                                                 




                                                                                        

                                                            
                                                           

                                                   
                                                                     
                                                                                              
                                                                                  
 



                                                                                    



                                                        

                                            
                                                      
                                                                                 

                                                    



                                                                                        



                                                            
                                                                     
                                                                                              
                                                                                  
 
                              
 

                          


                                                    
                                               



                                                        


                                               
                                                            

                                                             




                                                                                  
                                          
                                                  

                                                          


                                                            
                                             



                                                        

                                               


                                                                   
 




                                                    
                                               



                                                        


                                               
                                                         

                                                             




                                                                               
                                          
                                         
                                                  

                                                          


                                                                      
                                              

                           
 
                       
 


                                                     
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root_layout_view_edit_profile_activity"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".activities.EditProfileActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appbar_layout_view_edit_profile_activity"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar_layout_edit_profile_activity"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|enterAlways"
            app:titleEnabled="false"
            app:toolbarId="@+id/toolbar_post_text_activity">

            <com.google.android.material.appbar.MaterialToolbar
                android:id="@+id/toolbar_view_edit_profile_activity"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="?attr/actionBarSize"
                app:navigationIcon="?attr/homeAsUpIndicator"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

        </com.google.android.material.appbar.CollapsingToolbarLayout>

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:id="@+id/content_view_edit_profile_activity"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <FrameLayout
                    android:id="@+id/frame_layout_view_banner_edit_profile_activity"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">

                    <pl.droidsonroids.gif.GifImageView
                        android:id="@+id/image_view_banner_edit_profile_activity"
                        android:layout_width="match_parent"
                        android:layout_height="180dp"
                        android:scaleType="centerCrop"
                        tools:src="@tools:sample/backgrounds/scenic" />

                    <ImageView
                        android:id="@+id/image_view_change_banner_edit_profile_activity"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="end|bottom"
                        android:layout_margin="8dp"
                        android:padding="8dp"
                        android:background="@drawable/ic_dot_outline"
                        android:contentDescription="@string/content_description_change_banner"
                        app:srcCompat="@drawable/ic_add_a_photo_day_night_24dp" />

                </FrameLayout>

                <FrameLayout
                    android:id="@+id/frame_layout_view_avatar_edit_profile_activity"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="16dp"
                    android:layout_marginTop="144dp"
                    android:elevation="4dp">

                    <pl.droidsonroids.gif.GifImageView
                        android:id="@+id/image_view_avatar_edit_profile_activity"
                        android:layout_width="72dp"
                        android:layout_height="72dp"
                        tools:src="@tools:sample/avatars" />

                    <ImageView
                        android:id="@+id/image_view_change_avatar_edit_profile_activity"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:padding="8dp"
                        android:background="@drawable/ic_dot_outline"
                        android:contentDescription="@string/content_description_change_avatar"
                        app:srcCompat="@drawable/ic_add_a_photo_day_night_24dp" />

                </FrameLayout>

            </FrameLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingTop="48dp"
                    android:paddingStart="16dp"
                    android:paddingEnd="16dp"
                    android:text="@string/display_name_text"
                    android:textSize="?attr/font_18"
                    android:fontFamily="?attr/font_family" />

                <EditText
                    android:id="@+id/edit_text_display_name_edit_profile_activity"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:padding="16dp"
                    android:background="#00000000"
                    android:textSize="?attr/font_16"
                    android:fontFamily="?attr/font_family"
                    android:hint="@string/display_name_hint"
                    android:importantForAutofill="no"
                    android:inputType="textCapSentences"
                    android:maxLength="30" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:paddingStart="16dp"
                    android:paddingEnd="16dp"
                    android:text="@string/display_name_description"
                    android:textSize="?attr/font_12"
                    android:fontFamily="?attr/font_family" />

            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingTop="48dp"
                    android:paddingStart="16dp"
                    android:paddingEnd="16dp"
                    android:text="@string/about_you_text"
                    android:textSize="?attr/font_18"
                    android:fontFamily="?attr/font_family" />

                <EditText
                    android:id="@+id/edit_text_about_you_edit_profile_activity"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:padding="16dp"
                    android:gravity="top"
                    android:background="#00000000"
                    android:textSize="?attr/font_16"
                    android:fontFamily="?attr/font_family"
                    android:hint="@string/about_you_hint"
                    android:importantForAutofill="no"
                    android:inputType="textCapSentences|textMultiLine"
                    android:maxLength="200" />

            </LinearLayout>

        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>