Back to project page SpeechWriter.
The source code is released under:
MIT License
If you think the Android project SpeechWriter 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 edu.psu.rcy5017.speechwriter.controller; /*from w w w. jav a 2s . c o m*/ import edu.psu.rcy5017.speechwriter.activity.OptionsActivity; import edu.psu.rcy5017.speechwriter.constant.RequestCodes; import android.app.Activity; import android.content.Intent; public enum OptionsCntl { INSTANCE; public void openOptionsPage(Activity activity) { final Intent intent = new Intent(activity, OptionsActivity.class); activity.startActivityForResult(intent, RequestCodes.OPEN_OPTIONS_REQUEST); } }