Back to project page WebCamViewer.
The source code is released under:
Apache License
If you think the Android project WebCamViewer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * ****************************************************************************** * Copyright (c) 2013-2014 Tomas Valenta. */* ww w . jav a 2 s . co m*/ * 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 cz.yetanotherview.webcamviewer.app.actions; import android.app.Dialog; import android.app.DialogFragment; import android.os.Bundle; import android.view.View; import com.afollestad.materialdialogs.MaterialDialog; import cz.yetanotherview.webcamviewer.app.R; public class SelectionDialog extends DialogFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); } @Override public Dialog onCreateDialog(Bundle savedInstanceState) { super.onCreate(savedInstanceState); String[] items = {getString(R.string.popular_webcams),getString(R.string.selecting_by_country),getString(R.string.latest_webcams)}; return new MaterialDialog.Builder(getActivity()) .title(R.string.available_options) .items(items) .itemsCallbackSingleChoice(0, new MaterialDialog.ListCallback() { @Override public void onSelection(MaterialDialog dialog, View view, int which, CharSequence text) { DialogFragment fetcher = new JsonFetcherDialog(); Bundle bundle = new Bundle(); bundle.putInt("selection", which); fetcher.setArguments(bundle); fetcher.show(getFragmentManager(), "JsonFetcherDialog"); } }) .positiveText(R.string.choose) .build(); } }