Commit d6102714 by sikang

bugFix

parent 8c564664
......@@ -7,6 +7,7 @@ import android.support.annotation.LayoutRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
......@@ -149,6 +150,7 @@ public abstract class BaseFragment extends Fragment implements IView {
@Override
public void onHttpError(String action, String msg) {
Log.e(TAG, action + ": " + msg);
DialogFactory.createMessageDialog(getActivity(), "Tip", msg, "OK").show();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment