blob: 5f6a42e2bbbfbd80193be41a4077ebd08f930862 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/renderTimesBottomSheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/white"
app:behavior_hideable="true"
app:behavior_peekHeight="80dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<View
android:layout_width="match_parent"
android:layout_height="@dimen/divider_height"
android:background="@color/divider" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="20sp"
android:textStyle="bold"
android:layout_marginTop="24dp"
android:layout_marginBottom="24dp"
android:layout_marginLeft="24dp"
android:textColor="@android:color/black"
android:text="@string/render_times_title"/>
<ImageButton
android:id="@+id/renderTimesBottomSheetInfoButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="16dp"
android:background="?attr/selectableItemBackgroundBorderless"
app:srcCompat="@drawable/ic_info_outline"/>
<ImageButton
android:id="@+id/closeRenderTimesBottomSheetButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="16dp"
android:background="?attr/selectableItemBackgroundBorderless"
app:srcCompat="@drawable/ic_close"/>
</LinearLayout>
<LinearLayout
android:id="@+id/renderTimesContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"/>
</LinearLayout>