mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
78 lines
2.9 KiB
XML
78 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="6dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/reviewQuestion"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:gravity="center_vertical"
|
|
android:text="testing1"
|
|
android:textAlignment="center"
|
|
android:textColor="?attr/reviewHeading"
|
|
android:textSize="32sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/reviewQuestionContext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:gravity="center_vertical"
|
|
android:text="testing2"
|
|
android:textAlignment="center"
|
|
android:textSize="22sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<Button
|
|
android:id="@+id/yesButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/activity_margin_horizontal"
|
|
android:layout_weight="1"
|
|
android:background="@android:color/transparent"
|
|
android:text="@string/yes"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/yes_button_color"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/noButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/activity_margin_horizontal"
|
|
android:layout_weight="1"
|
|
android:background="@android:color/transparent"
|
|
android:text="@string/no"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/no_button_color"
|
|
android:textSize="18sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<View
|
|
android:id="@+id/bottomview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="15dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="?attr/colorPrimaryDark"></View>
|
|
|
|
</RelativeLayout>
|