Created ScrollingGridTimePickerDialog

This commit is contained in:
Phillip Hsu
2016-07-17 03:02:57 -07:00
parent d1c0820de4
commit bc2446d586
9 changed files with 229 additions and 14 deletions
@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- TOneverDO: Use LinearLayout because it doesn't obey LWM -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="@dimen/scrolling_grid_height"
android:scrollbars="vertical"
android:scrollbarSize="@dimen/scrollbar_width"
android:fadeScrollbars="false"
android:layout_alignParentTop="true"/>
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?android:listDividerAlertDialog"
android:layout_below="@id/grid"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/fab_cell_height"
android:orientation="horizontal"
android:layout_below="@id/divider">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:minHeight="40dp"
android:layout_weight="1"
android:layout_gravity="center"
android:gravity="center"
android:text="AM"
android:textSize="@dimen/ampm_text_size"/>
<FrameLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_done_24dp"/>
</FrameLayout>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:minHeight="40dp"
android:layout_weight="1"
android:layout_gravity="center"
android:gravity="center"
android:text="PM"
android:textSize="@dimen/ampm_text_size"/>
</LinearLayout>
</RelativeLayout>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="40dp"
android:textSize="@dimen/grid_element_text_size"
android:gravity="center"
android:layout_gravity="center"/>