Back to project page ringydingydingy.
The source code is released under:
GNU General Public License
If you think the Android project ringydingydingy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * This file is part of RingyDingyDingy. * Copyright (C) 2011-2012 Ayron Jungren */*from w ww.jav a2s.c o m*/ * RingyDingyDingy 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, version 3 of the License only. * * RingyDingyDingy 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 RingyDingyDingy. If not, see <http://www.gnu.org/licenses/>. */ package com.dririan.RingyDingyDingy; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class ToggleHandler extends BroadcastReceiver { public static final String INTENT = "com.dririan.RingyDingyDingy.TOGGLE"; @Override public void onReceive(Context context, Intent intent) { PreferencesManager preferencesManager = PreferencesManager.getInstance(context); // If somehow the ringtone is still playing, stop it RemoteRingActivity.stopRinging(); preferencesManager.toggleEnabled(); PreferencesActivity.updateEnabled(); NotificationHandler.updateNotification(context); } }