Back to project page AURHelperDroid.
The source code is released under:
Apache License
If you think the Android project AURHelperDroid 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.stomachion.aurhelperdroid.fragments; //from www. j a v a 2 s . com import android.app.Activity; import com.stomachion.aurhelperdroid.activities.PreferencesActivity; import com.stomachion.aurhelperdroid.fallbacksupport.ActivityHostFragment; /** * User: Pedro Veloso * Preferences Screen. Will show independent Activity on pre-honeycomb devices */ public class PreferencesFrag extends ActivityHostFragment { @Override protected Class<? extends Activity> getActivityClass() { return PreferencesActivity.class; } }