mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 10:18:12 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
|
|
<?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"
|
||
|
|
>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
|
android:id="@+id/questionTextView"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:padding="@dimen/card_padding"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/answerTextView"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:paddingLeft="@dimen/card_padding"
|
||
|
|
android:paddingStart="@dimen/card_padding"
|
||
|
|
android:paddingEnd="@dimen/card_padding"
|
||
|
|
android:paddingRight="@dimen/card_padding"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
|
/>
|
||
|
|
</LinearLayout>
|
||
|
|
</androidx.core.widget.NestedScrollView>
|