Back to project page wifi-auto-forget.
The source code is released under:
GNU General Public License
If you think the Android project wifi-auto-forget 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.cebesius.wifiautoforget.mvp; //w ww . ja v a 2 s .c o m import android.widget.Toast; import com.cebesius.wifiautoforget.WifiAutoForgetApplication; /** * */ public class AppView { private WifiAutoForgetApplication application; public AppView(WifiAutoForgetApplication application) { this.application = application; } public void showToast(String message, int length) { Toast.makeText(application, message, length).show(); } public void showToast(int messageResId, int length) { Toast.makeText(application, messageResId, length).show(); } }