blob: 4977be35111bfce90c5be962c0b62fe3135912dd [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.timezonepicker;
import android.app.Dialog;
import android.app.DialogFragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
public class TimeZonePickerDialog extends DialogFragment implements
TimeZonePickerView.OnTimeZoneSetListener {
public static final String BUNDLE_START_TIME_MILLIS = "bundle_event_start_time";
public static final String BUNDLE_TIME_ZONE = "bundle_event_time_zone";
private OnTimeZoneSetListener mTimeZoneSetListener;
public interface OnTimeZoneSetListener {
void onTimeZoneSet(TimeZoneInfo tzi);
}
public void setOnTimeZoneSetListener(OnTimeZoneSetListener l) {
mTimeZoneSetListener = l;
}
public TimeZonePickerDialog() {
super();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
long timeMillis = 0;
String timeZone = null;
Bundle b = getArguments();
if (b != null) {
timeMillis = b.getLong(BUNDLE_START_TIME_MILLIS);
timeZone = b.getString(BUNDLE_TIME_ZONE);
}
return new TimeZonePickerView(getActivity(), null, timeZone, timeMillis, this);
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = super.onCreateDialog(savedInstanceState);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
return dialog;
}
@Override
public void onTimeZoneSet(TimeZoneInfo tzi) {
if (mTimeZoneSetListener != null) {
mTimeZoneSetListener.onTimeZoneSet(tzi);
}
dismiss();
}
}