Bottom sheet time picker working

This commit is contained in:
Phillip Hsu
2016-07-19 20:45:05 -07:00
parent ae6f4fc723
commit ae83786b3c
7 changed files with 83 additions and 49 deletions
@@ -1,20 +1,22 @@
package com.philliphsu.clock2.editalarm;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.annotation.LayoutRes;
import android.support.annotation.Nullable;
import android.support.v4.app.DialogFragment;
import android.support.design.widget.BottomSheetBehavior;
import android.support.design.widget.BottomSheetDialog;
import android.support.design.widget.BottomSheetDialogFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import butterknife.ButterKnife;
/**
* Created by Phillip Hsu on 7/16/2016.
*/
public abstract class BaseTimePickerDialog extends DialogFragment {
public abstract class BaseTimePickerDialog extends BottomSheetDialogFragment {
// TODO: Consider private access, and then writing package/protected API that subclasses
// can use to interface with this field.
@@ -33,6 +35,40 @@ public abstract class BaseTimePickerDialog extends DialogFragment {
mCallback = callback;
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = super.onCreateDialog(savedInstanceState);
// We're past onCreate() in the lifecycle, so we can safely retrieve the host activity.
View view = LayoutInflater.from(getActivity()).inflate(contentLayout(), null);
/**
* Adds our view to a ViewGroup that has a BottomSheetBehavior attached. The ViewGroup
* itself is a child of a CoordinatorLayout.
* @see {@link BottomSheetDialog#wrapInBottomSheet(int, View, ViewGroup.LayoutParams)}
*/
dialog.setContentView(view);
// Bind this fragment, not the internal dialog!
ButterKnife.bind(this, view);
final BottomSheetBehavior behavior = BottomSheetBehavior.from((View) view.getParent());
// When we collapse, collapse all the way. Do not be misled by the "docs" in
// https://android-developers.blogspot.com.au/2016/02/android-support-library-232.html
// when it says:
// "STATE_COLLAPSED: ... the app:behavior_peekHeight attribute (defaults to 0)"
// While it is true by default, BottomSheetDialogs override this default height.
// See http://stackoverflow.com/a/35634293/5055032 for an alternative solution involving
// defining a style that overrides the attribute.
behavior.setPeekHeight(0);
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
// Every time we show, show at our full height.
behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
});
return dialog;
}
/*
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
@@ -41,6 +77,7 @@ public abstract class BaseTimePickerDialog extends DialogFragment {
ButterKnife.bind(this, view);
return view;
}
*/
@Override
public void onDestroyView() {
@@ -42,6 +42,7 @@ import butterknife.OnClick;
import static android.text.format.DateFormat.getTimeFormat;
import static com.philliphsu.clock2.DaysOfWeek.SATURDAY;
import static com.philliphsu.clock2.DaysOfWeek.SUNDAY;
import static com.philliphsu.clock2.util.KeyboardUtils.hideKeyboard;
import static com.philliphsu.clock2.util.Preconditions.checkNotNull;
/**
@@ -313,12 +314,15 @@ public class EditAlarmActivity extends BaseActivity implements
@OnClick(R.id.input_time)
void openTimePicker() {
// Close the keyboard first, or else our dialog will be screwed up.
// If not open, this does nothing.
hideKeyboard(this);
// Create a new instance each time we want to show the dialog.
// If we keep a reference to the dialog, we keep its previous state as well.
// So the next time we call show() on it, the input field will show the
// last inputted time.
//NumpadTimePickerDialog.newInstance(this).show(getSupportFragmentManager(), TAG_TIME_PICKER);
ScrollingGridTimePickerDialog.newInstance(this, true).show(getSupportFragmentManager(), "tag");
NumpadTimePickerDialog.newInstance(this).show(getSupportFragmentManager(), TAG_TIME_PICKER);
//ScrollingGridTimePickerDialog.newInstance(this, true).show(getSupportFragmentManager(), "tag");
}
private void setWeekDaysText() {