Back to project page led-notifier.
The source code is released under:
Apache License
If you think the Android project led-notifier listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ciubotariu_levy.lednotifier; // w ww. j a v a 2s. com import android.os.Bundle; import android.support.v4.app.FragmentActivity; public class SMSAppChooserContainer extends FragmentActivity { private static final String SMS_DIALOG_TAG = "sms_chooser"; @Override protected void onCreate (Bundle savedInstanceState){ super.onCreate(savedInstanceState); if (getSupportFragmentManager().findFragmentByTag(SMS_DIALOG_TAG) == null){ new SmsAppChooserDialog().show(getSupportFragmentManager(), SMS_DIALOG_TAG); } } }