fedilab-Android-App/app/src/main/res/layout/layout_poll.xml

147 lines
5.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2019 Thomas Schneider
This file is a part of Mastalab
This program is free software; you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along with Mastalab; if not,
see <http://www.gnu.org/licenses>.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:id="@+id/poll_container"
android:visibility="gone"
android:orientation="vertical"
android:layout_height="match_parent"
>
<LinearLayout
android:visibility="gone"
android:id="@+id/single_choice"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:ignore="UselessParent">
<RadioButton
android:id="@+id/r_choice_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="false"
/>
<RadioButton
android:id="@+id/r_choice_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="false"
/>
<RadioButton
android:id="@+id/r_choice_3"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="false"
/>
<RadioButton
android:id="@+id/r_choice_4"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="false"
/>
</RadioGroup>
</LinearLayout>
<LinearLayout
android:visibility="gone"
android:id="@+id/multiple_choice"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:id="@+id/c_choice_1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<CheckBox
android:id="@+id/c_choice_2"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<CheckBox
android:id="@+id/c_choice_3"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<CheckBox
android:id="@+id/c_choice_4"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<Button
android:visibility="gone"
android:layout_marginTop="10dp"
android:gravity="center"
android:layout_gravity="center"
android:id="@+id/submit_vote"
style="@style/Base.Widget.AppCompat.Button.Colored"
android:text="@string/vote"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<LinearLayout
android:visibility="gone"
android:id="@+id/rated"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<br.com.felix.horizontalbargraph.HorizontalBar
android:id="@+id/choices"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/number_votes"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text=" - "
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:ignore="HardcodedText" />
<TextView
android:id="@+id/remaining_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/refresh_poll"
android:textColor="?colorAccent"
android:text="@string/refresh_poll"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>