UIUtils.java 224 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 package com.lotus.town.utils; import android.widget.Toast; import com.sdk.Sdk; public class UIUtils { public static void showToast(String msg) { Toast.makeText(Sdk.app(),msg,Toast.LENGTH_LONG).show(); } }