Back to project page osu-taste-portable.
The source code is released under:
Apache License
If you think the Android project osu-taste-portable 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.dgsrz.osuTaste.utils; // w w w.j ava2 s.c om import android.app.Activity; import android.content.Intent; import com.dgsrz.osuTaste.activities.*; /** * @author dgsrz (dgsrz@vip.qq.com) */ public class NavUtils { /** * Opens to {@link SettingsActivity}. * * @param activity The {@link Activity} to use. */ public static void openSettings(final Activity activity) { final Intent intent = new Intent(activity, SettingsActivity.class); activity.startActivity(intent); } }