You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
5 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge 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="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
tools:background="@drawable/card_frame"
|
||
|
tools:padding="@dimen/poll_preview_padding"
|
||
|
tools:parentTag="android.widget.LinearLayout">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableStart="@drawable/ic_poll_24dp"
|
||
|
android:drawablePadding="4dp"
|
||
|
android:gravity="center_vertical"
|
||
|
android:text="@string/create_poll_title"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/pollPreviewOptions"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="4dp"
|
||
|
android:nestedScrollingEnabled="false"
|
||
|
android:overScrollMode="never"
|
||
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/pollDurationPreview"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="4dp"
|
||
|
tools:text="5 Minutes" />
|
||
|
|
||
|
</merge>
|