Skip to content
Snippets Groups Projects
Commit b69c5be2 authored by George Muresan's avatar George Muresan
Browse files

changes

parent ca325917
Branches
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout 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:layout_width="match_parent" android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ThirdPage">
<View
android:id="@+id/topView"
android:layout_width="match_parent"
android:layout_height="75dp"
android:background="@color/LightSteelBlue"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp" />
<TextView <TextView
android:id="@+id/goalDiary" android:id="@+id/goalDiaryTitle"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentTop="true" android:layout_marginBottom="8dp"
android:layout_centerHorizontal="true" android:layout_marginLeft="8dp"
android:layout_marginTop="111dp" android:layout_marginStart="8dp"
android:text="@string/diary" /> android:layout_marginTop="8dp"
android:text="@string/goalDiaryTitle"
android:textAllCaps="false"
android:textSize="30sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@+id/topView"
app:layout_constraintStart_toStartOf="@+id/topView"
app:layout_constraintTop_toTopOf="@+id/topView" />
<ImageView
android:id="@+id/logoPlace"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="@+id/topView"
app:layout_constraintEnd_toEndOf="@+id/topView"
app:layout_constraintTop_toTopOf="@+id/topView"
app:srcCompat="@android:color/holo_blue_dark"
android:contentDescription="@string/desc" />
<EditText
android:id="@+id/pleaseInput"
android:layout_width="354dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@android:color/transparent"
android:clickable="false"
android:cursorVisible="false"
android:ems="10"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="@string/some_explanation_about_the_input"
android:inputType=""
android:text="@string/goalDiaryIntro"
android:textSize="16sp"
android:textStyle="italic"
app:layout_constraintBottom_toTopOf="@+id/yourGoal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/topView"
app:layout_constraintVertical_bias="1.0" />
<EditText
android:id="@+id/yourGoal"
android:layout_width="263dp"
android:layout_height="33dp"
android:layout_marginBottom="344dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:background="@drawable/text_input_border"
android:hint="@string/some_explanation_about_the_input"
android:inputType=""
android:text="@string/goalInput"
android:textSize="14sp"
android:textStyle="italic"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.504"
app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>
</RelativeLayout> </RelativeLayout>
\ No newline at end of file
...@@ -165,6 +165,10 @@ ...@@ -165,6 +165,10 @@
<string name="persInputSchedule"> </string> <string name="persInputSchedule"> </string>
<string name="goalDiaryIntro">Welcome to your Goal Diary! Here you will abe to note any particular changes you want to reflect on/any goals you wish to accomplice and any other observations. You can also see previous notes.</string>
<string name="factorsMenu">Factors</string> <string name="factorsMenu">Factors</string>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment