Back to project page PhoneAsTablet.
The source code is released under:
GNU General Public License
If you think the Android project PhoneAsTablet 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 Tsapalos Vasilios * //from ww w . j av a2 s .c o m * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package info.bits.phoneastablet.services; import android.app.Service; import android.content.Intent; import android.content.IntentFilter; import android.os.IBinder; import info.bits.phoneastablet.receivers.OrientationReceiver; /** * @author LiTTle * A service running at the background and inspects the device's state */ public class OrientationService extends Service { private static final String BCAST_CONFIG_CHANGED = "android.intent.action.CONFIGURATION_CHANGED"; private OrientationReceiver receiver; /** * Registers the receiver for orientation changes. * * @see android.app.Service#onCreate() */ @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); receiver = new OrientationReceiver(); IntentFilter filter = new IntentFilter(); filter.addAction(BCAST_CONFIG_CHANGED); registerReceiver(receiver, filter); } /** * Starts the service and keep it running. * * @see android.app.Service#onStartCommand(android.content.Intent, int, int) */ @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub return START_STICKY; } /** * Unregisters the receiver and stops the service. * * @see android.app.Service#onDestroy() */ @Override public void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); unregisterReceiver(receiver); } /* * (non-Javadoc) * * @see android.app.Service#onBind(android.content.Intent) */ @Override public IBinder onBind(Intent arg0) { // TODO Auto-generated method stub return null; } }