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 */*w ww . ja v a 2 s. co 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 GoogleVoiceReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // Check if the Google Voice trigger is enabled PreferencesManager preferencesManager = PreferencesManager.getInstance(context); if(!preferencesManager.googleVoiceTriggerEnabled()) return; String source = intent.getExtras().getString("com.google.android.apps.googlevoice.PHONE_NUMBER"); String message = intent.getExtras().getString("com.google.android.apps.googlevoice.TEXT"); MessageHandler.processMessage(context, null, message, source); } }