Created
July 26, 2020 15:51
-
-
Save chelseatroy/ea699f044b53ddecb45ba911c0cc26da to your computer and use it in GitHub Desktop.
Section Layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:paddingTop="24dp" | |
android:paddingBottom="20dp" | |
android:textColor="@color/black" | |
android:text="@string/hot_flashes_flushes_in_the_last_7_days" | |
android:textStyle="bold" | |
android:textSize="26sp" /> | |
<TextView | |
android:id="@+id/hot_flash_frequency_question" | |
android:textColor="#000000" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:paddingTop="24dp" | |
android:text="@string/in_the_last_7_days_how_often_did_you_have_hot_flashes_flushes" | |
android:textSize="24sp" /> | |
<include android:id="@+id/hot_flash_frequency_response" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
layout="@layout/frequency_question"/> | |
<TextView | |
android:id="@+id/hot_flash_severity_question" | |
android:textColor="@color/black" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:paddingTop="24dp" | |
android:text="@string/in_the_last_7_days_what_was_the_severity_of_your_hot_flashes_flushes_at_their_worst" | |
android:textSize="24sp" /> | |
<include android:id="@+id/hot_flash_severity_response" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
layout="@layout/severity_question"/> | |
<View | |
android:layout_width="match_parent" | |
android:layout_height="1dp" | |
android:background="@color/colorPrimary" | |
android:paddingBottom="20dp" | |
android:paddingTop="20dp"/> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment