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; // www .j a va 2 s . co m import android.widget.Toast; import com.cachirulop.whereiparked.manager.ContextManager; public class Message { public static void showMessage (String msg) { Toast toast; toast = Toast.makeText (ContextManager.getContext (), msg, Toast.LENGTH_LONG); toast.show (); } }