mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
60 lines
No EOL
1.8 KiB
XML
60 lines
No EOL
1.8 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="5"
|
|
android:orientation="vertical"
|
|
android:background="@color/main_background_light"
|
|
>
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="3"
|
|
android:src="@drawable/commons_logo_large"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/testingText"
|
|
android:layout_width="match_parent"
|
|
android:textColor="@android:color/black"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.7"
|
|
android:text="testing1"
|
|
/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.7"
|
|
android:text="testing2"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.6"
|
|
android:weightSum="3"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/yesButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<Button
|
|
android:id="@+id/noButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<Button
|
|
android:id="@+id/notSureButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |