Back to project page sms-smap-gateway.
The source code is released under:
GNU General Public License
If you think the Android project sms-smap-gateway 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.android.smap.ui.views; /*from ww w .ja v a2s .com*/ import android.content.Context; import android.widget.LinearLayout; import com.android.smap.controllers.ControllerError; import com.android.smap.ui.OnErrorTouchedListener; public class ErrorView extends LinearLayout { public ErrorView(Context context, OnErrorTouchedListener callback) { super(context); // TODO mock up error view layout } public void showErrorLayout(boolean b) { // TODO Auto-generated method stub } public void showErrorLayout(boolean b, ControllerError error) { // TODO Auto-generated method stub } }