mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
104 lines
No EOL
3.2 KiB
XML
104 lines
No EOL
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:weightSum="6"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal|bottom"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="3">
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/commons_logo_large"
|
|
/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:visibility="visible"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/reviewQuestion"
|
|
android:layout_width="match_parent"
|
|
android:textColor="@android:color/black"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1.1"
|
|
android:textAlignment="center"
|
|
android:textSize="32sp"
|
|
android:gravity="center_vertical"
|
|
android:text="testing1"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/reviewQuestionContext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.7"
|
|
android:textAlignment="center"
|
|
android:textSize="24sp"
|
|
android:layout_marginBottom="15dp"
|
|
android:gravity="center_vertical"
|
|
android:text="testing2"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/reviewCategories"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.7"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
android:textAlignment="center"
|
|
android:text="testing2"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.6"
|
|
android:weightSum="2"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/yesButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@android:color/transparent"
|
|
android:text="@string/yes"
|
|
android:textSize="20sp"
|
|
android:textColor="?attr/colorPrimaryDark"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/noButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent"
|
|
android:layout_weight="1"
|
|
android:text="@string/no"
|
|
android:textSize="20sp"
|
|
android:textColor="?attr/colorPrimaryDark"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
<View
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.6"
|
|
android:background="?attr/colorPrimaryDark"
|
|
></View>
|
|
|
|
</LinearLayout> |