Back to project page mobilepower-android.
The source code is released under:
Apache License
If you think the Android project mobilepower-android 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 Dario Scoppelletti, <http://www.scoppelletti.it/>. * //from ww w. j a va 2 s. c o 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 it.scoppelletti.mobilepower.app; import android.app.*; import android.support.v4.app.*; /** * Interfaccia di supporto di un’attività. * * @since 1.0 */ public interface ActivitySupport { /** * Codice delle richieste per l’integrazione con Facebook. * * @deprecated L’integrazione con Facebook è stata dismessa. */ public static final int REQ_FACEBOOK = 1; /** * Codice di richiesta dell’attività di visualizzazione delle * note di rilascio. */ public static final int REQ_RELEASENOTES = 2; /** * Codice di richiesta di abilitazione del Bluetooth. */ public static final int REQ_BTENABLE = 3; /** * Ultimo codice di richiesta allocato dalle librerie. */ public static final int REQ_LAST = 3; /** * Restituisce l’attività. * * @return Oggetto. */ Activity asActivity(); /** * Restituisce il gestore dei frammenti. * * @return Oggetto. */ FragmentManager getSupportFragmentManager(); /** * Restituisce la barra delle azioni. * * @return Oggetto. Se l’attività non ha la barra delle azioni, * restituisce {@code null}. */ ActionBarSupport getSupportActionBar(); /** * Avvia il successivo processo asincrono di inizializzazione. */ void onNextAsyncInitializer(); /** * Gestisce l’apertura di un dialogo. * * @param tag Tag del frammento. */ void onDialogFragmentShow(String tag); /** * Gestisce la chiusura di un dialogo. * * @param tag Tag del frammento. */ void onDialogFragmentDismiss(String tag); }