Skip to content

Instantly share code, notes, and snippets.

@rekire
rekire / EditMail.java
Last active December 26, 2015 01:39
TextView for Android which checks automatically if a domain can receive emails. IDN domains are supported and it includes a mx check if the domain can receive emails. It requires this gist (https://gist.github.com/rekire/7072650) and xbill (http://www.xbill.org/dnsjava/). This small util will maybe get a full repo later, now you can play with it…
/**
* @copyright
* This code is licensed under the Rekisoft Public License.
* See http://www.rekisoft.eu/licenses/rkspl.html for more informations.
*/
/**
* @package eu.rekisoft.android.controls
* This package contains controls provided by [rekisoft.eu](http://rekisoft.eu/).
*/
package eu.rekisoft.android.controls;
@rekire
rekire / UiWorker.java
Last active December 26, 2015 01:39
Helper class for simple execution of tasks on the UI thread.
/**
* @copyright
* This code is licensed under the Rekisoft Public License.
* See http://www.rekisoft.eu/licenses/rkspl.html for more informations.
*/
package eu.rekisoft.android.util;
import android.os.Handler;
import android.os.Looper;
@rekire
rekire / LazyWorker.java
Last active December 26, 2015 01:39
LazyWorker is my helper class for doing taks delayed. Such as checking inputs which require network operations and should not been done after each key down.
/**
* @copyright
* This code is licensed under the Rekisoft Public License.
* See http://www.rekisoft.eu/licenses/rkspl.html for more informations.
*/
/**
* @package eu.rekisoft.android.util
* This package contains utilities provided by [rekisoft.eu](http://rekisoft.eu/).
*/
package eu.rekisoft.android.util;