Android Open Source - SwypeTweaks Settings Activity






From Project

Back to project page SwypeTweaks.

License

The source code is released under:

Apache License

If you think the Android project SwypeTweaks 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.danation.xposed.swypetweaks;
/*w  ww .ja  v a2  s.  co m*/
import android.app.Activity;
import android.os.Bundle;

public class SettingsActivity extends Activity
{
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Display the fragment as the main content.
        getFragmentManager().beginTransaction()
                .replace(android.R.id.content, new SettingsFragment())
                .commit();
    }
}




Java Source Code List

com.danation.xposed.swypetweaks.EditTextPreference.java
com.danation.xposed.swypetweaks.SettingsActivity.java
com.danation.xposed.swypetweaks.SettingsFragment.java
com.danation.xposed.swypetweaks.SwypeTweaks.java
net.margaritov.preference.colorpicker.AlphaPatternDrawable.java
net.margaritov.preference.colorpicker.ColorPickerDialog.java
net.margaritov.preference.colorpicker.ColorPickerPanelView.java
net.margaritov.preference.colorpicker.ColorPickerPreference.java
net.margaritov.preference.colorpicker.ColorPickerView.java