Android Open Source - SwypeTweaks Edit Text Preference






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  w w  .j a  v a 2s .c o m*/
import android.content.Context;
import android.util.AttributeSet;
 
public class EditTextPreference extends android.preference.EditTextPreference {
 
    public EditTextPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
     
    @Override
    protected void onDialogClosed(boolean positiveResult) {
        super.onDialogClosed(positiveResult);
         
        setSummary(getSummary());
    }
 
    @Override
    public CharSequence getSummary() {
        return this.getText();
    }
}




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