2022-07-01 16:54:06 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Marcel Hibbe
|
|
|
|
~ Copyright (C) 2022 Marcel Hibbe <dev@mhibbe.de>
|
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
~
|
|
|
|
~ This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2022-07-01 16:40:19 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-06-03 16:21:18 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-07-22 15:04:44 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-06-03 16:21:18 +03:00
|
|
|
android:layout_width="match_parent"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_height="match_parent"
|
2022-07-22 15:04:44 +03:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:background="@color/white">
|
2022-06-03 16:21:18 +03:00
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<ScrollView
|
2022-06-23 14:42:57 +03:00
|
|
|
android:id="@+id/vote_options_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_height="0dp"
|
2022-07-22 15:04:44 +03:00
|
|
|
android:layout_weight="1">
|
2022-06-23 14:42:57 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/vote_options_checkboxes_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/poll_vote_radio_group"
|
2022-07-22 15:04:44 +03:00
|
|
|
android:layout_width="match_parent"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_height="wrap_content"
|
2022-07-22 15:04:44 +03:00
|
|
|
android:layout_marginStart="-4dp"
|
|
|
|
tools:layout_height="400dp" />
|
2022-06-23 14:42:57 +03:00
|
|
|
</LinearLayout>
|
2022-07-01 16:40:19 +03:00
|
|
|
</ScrollView>
|
2022-06-23 14:42:57 +03:00
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-22 14:37:51 +03:00
|
|
|
android:layout_marginTop="@dimen/standard_margin"
|
2022-07-29 00:15:42 +03:00
|
|
|
android:layout_marginEnd="4dp"
|
2022-09-27 11:34:11 +03:00
|
|
|
android:orientation="vertical"
|
2022-09-29 12:19:46 +03:00
|
|
|
android:gravity="end">
|
2022-06-23 14:42:57 +03:00
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2022-09-27 11:34:11 +03:00
|
|
|
android:id="@+id/poll_vote_submit_button"
|
2022-06-23 14:42:57 +03:00
|
|
|
android:layout_width="wrap_content"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_height="wrap_content"
|
2022-07-28 20:24:49 +03:00
|
|
|
android:minHeight="@dimen/min_size_clickable_area"
|
2022-09-27 11:34:11 +03:00
|
|
|
android:minWidth="@dimen/poll_buttons_min_width"
|
|
|
|
android:text="@string/polls_submit_vote"
|
2022-07-01 16:40:19 +03:00
|
|
|
app:cornerRadius="@dimen/button_corner_radius" />
|
2022-06-23 14:42:57 +03:00
|
|
|
|
2022-07-14 18:21:26 +03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/poll_vote_edit_dismiss"
|
2022-07-28 20:24:49 +03:00
|
|
|
style="@style/OutlinedButton"
|
2022-07-14 18:21:26 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-28 20:24:49 +03:00
|
|
|
android:minHeight="@dimen/min_size_clickable_area"
|
2022-09-27 11:34:11 +03:00
|
|
|
android:minWidth="@dimen/poll_buttons_min_width"
|
2022-07-28 20:24:49 +03:00
|
|
|
android:text="@string/nc_common_dismiss"
|
2022-07-14 18:21:26 +03:00
|
|
|
android:visibility="gone"
|
|
|
|
app:cornerRadius="@dimen/button_corner_radius"
|
2022-07-28 20:24:49 +03:00
|
|
|
tools:visibility="visible" />
|
2022-07-14 18:21:26 +03:00
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2022-09-27 11:34:11 +03:00
|
|
|
android:id="@+id/poll_vote_end_poll_button"
|
2022-09-29 12:19:46 +03:00
|
|
|
style="@style/OutlinedButton"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-28 20:24:49 +03:00
|
|
|
android:minHeight="@dimen/min_size_clickable_area"
|
2022-09-29 12:19:46 +03:00
|
|
|
android:minWidth="@dimen/poll_buttons_min_width"
|
2022-09-27 11:34:11 +03:00
|
|
|
android:text="@string/polls_end_poll"
|
2022-07-01 16:40:19 +03:00
|
|
|
app:cornerRadius="@dimen/button_corner_radius" />
|
2022-06-23 14:42:57 +03:00
|
|
|
</LinearLayout>
|
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
</LinearLayout>
|