Android Open Source - FlashNotifier Fragment Prefs Tab






From Project

Back to project page FlashNotifier.

License

The source code is released under:

Apache License

If you think the Android project FlashNotifier listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.pandanomic.flashnotifier;
/*from   www.ja v a  2s  . com*/
import android.annotation.TargetApi;
import android.app.Fragment;
import android.os.Build;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

/**
 * At some point, will replace the FragmentMainTab with a SettingsFragment based on these:
 * http://blog.fordemobile.com/2012/11/display-preference-fragment-compatible.html
 * http://www.cs.dartmouth.edu/~campbell/cs65/lecture12/lecture12.html
 * http://forum.xda-developers.com/showpost.php?p=19719977&postcount=1
 */
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class FragmentPrefsTab extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return null;
    }
}




Java Source Code List

com.pandanomic.flashnotifier.FragmentMainTab.java
com.pandanomic.flashnotifier.FragmentPrefsTab.java
com.pandanomic.flashnotifier.ListFragmentAccessTab.java
com.pandanomic.flashnotifier.Main.java
com.pandanomic.flashnotifier.PatternValidator.java
com.pandanomic.flashnotifier.SMSCallListener.java
com.pandanomic.flashnotifier.ViewPagerAdapter.java