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-14 12:32:19 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-07-28 20:24:49 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-06-14 12:32:19 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-28 20:24:49 +03:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:background="@color/white">
|
2022-06-14 12:32:19 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/poll_results_list_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
2022-06-14 12:32:19 +03:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/poll_results_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-29 16:17:50 +03:00
|
|
|
tools:listitem="@layout/poll_result_header_item" />
|
2022-06-14 12:32:19 +03:00
|
|
|
</LinearLayout>
|
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2022-06-14 12:32:19 +03:00
|
|
|
android:layout_height="wrap_content"
|
2022-07-22 14:37:51 +03:00
|
|
|
android:layout_marginTop="@dimen/standard_margin"
|
2022-09-27 11:34:11 +03:00
|
|
|
android:orientation="vertical"
|
2022-09-29 12:19:46 +03:00
|
|
|
android:gravity="end">
|
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/edit_vote_button"
|
2022-07-01 16:40:19 +03:00
|
|
|
android:layout_width="wrap_content"
|
2022-07-22 20:09:23 +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_edit_vote"
|
|
|
|
android:theme="@style/Button.Primary"
|
2022-07-01 16:40:19 +03:00
|
|
|
app:cornerRadius="@dimen/button_corner_radius" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
2022-09-27 11:34:11 +03:00
|
|
|
android:id="@+id/poll_results_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"
|
2022-07-22 20:09:23 +03:00
|
|
|
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" />
|
|
|
|
</LinearLayout>
|
2022-06-14 12:32:19 +03:00
|
|
|
|
2022-07-01 16:40:19 +03:00
|
|
|
</LinearLayout>
|