tou a editar o perfil e deixar a pp mais bonita

This commit is contained in:
2026-02-03 16:42:13 +00:00
parent e19e8237f3
commit 44523ac02b
184 changed files with 6968 additions and 6948 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1017 KiB

After

Width:  |  Height:  |  Size: 82 KiB

View File

@@ -8,8 +8,8 @@
android:background="@color/background_color">
<ImageView
android:layout_width="160dp"
android:layout_height="160dp"
android:layout_width="187dp"
android:layout_height="177dp"
android:layout_marginBottom="24dp"
android:scaleType="centerCrop"
android:src="@drawable/ic_logo" />

View File

@@ -14,8 +14,8 @@
android:padding="24dp">
<ImageView
android:layout_width="139dp"
android:layout_height="129dp"
android:layout_width="161dp"
android:layout_height="160dp"
android:layout_marginBottom="32dp"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_logo" />
@@ -54,6 +54,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/email_hint"
android:autofillHints="emailAddress"
android:inputType="textEmailAddress" />
</com.google.android.material.textfield.TextInputLayout>
@@ -68,6 +69,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/password_hint"
android:autofillHints="password"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>

View File

@@ -14,11 +14,11 @@
android:padding="24dp">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_marginBottom="24dp"
android:src="@drawable/ic_logo"
android:contentDescription="@string/app_name" />
android:contentDescription="@string/app_name"
android:src="@drawable/ic_logo" />
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
@@ -105,6 +105,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/email_hint"
android:autofillHints="emailAddress"
android:inputType="textEmailAddress" />
</com.google.android.material.textfield.TextInputLayout>
@@ -119,6 +120,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/password_hint"
android:autofillHints="password"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>

View File

@@ -9,6 +9,16 @@
android:orientation="vertical"
android:padding="24dp">
<ImageView
android:id="@+id/edit_profile_image"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/ic_placeholder"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="16dp"
android:clickable="true"
android:focusable="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -60,7 +70,7 @@
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp">
android:layout_marginBottom="24dp">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_email"
@@ -70,18 +80,14 @@
android:inputType="textEmailAddress" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
<com.google.android.material.button.MaterialButton
android:id="@+id/button_change_password"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="24dp">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Nova Palavra-Passe"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>
android:layout_gravity="center_horizontal"
android:text="Alterar Palavra-passe"
android:layout_marginBottom="24dp"/>
<LinearLayout
android:layout_width="match_parent"

View File

@@ -9,9 +9,10 @@
android:background="@color/background_color">
<ImageView
android:id="@+id/profile_image"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/ic_logo"
android:src="@drawable/ic_placeholder"
android:layout_marginBottom="24dp"/>
<com.google.android.material.card.MaterialCardView

View File

@@ -12,7 +12,7 @@
<string name="forgot_password">Esqueci-me da Palavra-passe</string>
<string name="email_hint">Email</string>
<string name="password_hint">Palavra-passe</string>
<string name="name_hint">Nome</string>
<string name="name_hint">Nome Completo</string>
<string name="age_hint">Idade</string>
<string name="login_button">Entrar</string>
<string name="register_button">Registar</string>