2019-06-22 21:55:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2022-04-26 18:50:58 +02:00
|
|
|
<TextView
|
2019-06-22 21:55:03 +02:00
|
|
|
android:id="@+id/status_poll_option_result"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:background="@drawable/poll_option_background"
|
2023-03-21 19:34:18 +01:00
|
|
|
android:maxLines="3"
|
2019-06-22 21:55:03 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:paddingStart="6dp"
|
|
|
|
android:paddingTop="2dp"
|
|
|
|
android:paddingEnd="6dp"
|
|
|
|
android:paddingBottom="2dp"
|
2020-01-07 19:38:32 +01:00
|
|
|
android:textAlignment="viewStart"
|
2019-06-22 21:55:03 +02:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
tools:text="40%" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/status_poll_radio_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2023-01-02 14:09:18 +01:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-06-22 21:55:03 +02:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2020-01-30 21:37:28 +01:00
|
|
|
app:buttonTint="@color/compound_button_color"
|
2019-06-22 21:55:03 +02:00
|
|
|
tools:text="Option 1" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/status_poll_checkbox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2023-01-02 14:09:18 +01:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-06-22 21:55:03 +02:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2020-01-30 21:37:28 +01:00
|
|
|
app:buttonTint="@color/compound_button_color"
|
2019-06-22 21:55:03 +02:00
|
|
|
tools:text="Option 1" />
|
|
|
|
|
|
|
|
</FrameLayout>
|