Back to project page WhereIParked.
The source code is released under:
GNU General Public License
If you think the Android project WhereIParked 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 com.cachirulop.whereiparked.common; //w ww . j a va 2 s . c om import android.os.Handler; public class MessageHandler extends Handler { public void postMessage (final String msg) { post (new Runnable () { public void run () { Message.showMessage (msg); } }); } }