2020-04-03 13:36:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/scrollbarThumb"
|
|
|
|
|
android:scrollbars="vertical">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-10 11:16:17 +00:00
|
|
|
android:paddingStart="30dp"
|
|
|
|
|
android:paddingEnd="30dp"
|
|
|
|
|
android:paddingTop="@dimen/spacing_large"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_large">
|
2020-04-03 13:36:37 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-10 11:16:17 +00:00
|
|
|
android:textColor="@color/black"
|
|
|
|
|
style="@style/Headline6"
|
2020-04-03 13:36:37 +00:00
|
|
|
android:id="@+id/questionTextView"
|
2020-04-10 11:16:17 +00:00
|
|
|
android:layout_gravity="center_horizontal"/>
|
2020-04-03 13:36:37 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/answerTextView"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
2020-04-10 11:16:17 +00:00
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:textColor="@color/gray_200"
|
|
|
|
|
style="@style/Subheader3"
|
2020-04-03 13:36:37 +00:00
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|