Back to project page SensOSC.
The source code is released under:
Author: Thomas Mayer <thomas@residuum.org> Copyright (c) 2014 Thomas Mayer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation ...
If you think the Android project SensOSC 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 org.residuum.sensosc; /*from www . j a v a2 s. c o m*/ import android.content.Context; import android.preference.EditTextPreference; import android.util.AttributeSet; /** * Created by thomas on 22.09.14. */ public class ExtendedEditTextPreference extends EditTextPreference { public ExtendedEditTextPreference(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public ExtendedEditTextPreference(Context context, AttributeSet attrs) { super(context, attrs); } public ExtendedEditTextPreference(Context context) { super(context); } @Override public void setText(String text) { super.setText(text); setSummary(text); } }