Android MVP, where check internet connection

后端 未结 2 1960
我寻月下人不归
我寻月下人不归 2020-12-31 03:55

I\'m implementing MVP pattern on an Andorid App and I have a doubt about where is the best place for checking the internet connection. I us

2条回答
  •  北海茫月
    2020-12-31 04:27

    Solution:-

    You should check the internet connection availablity in BaseActivity class and then extend that activity is the better practice i think.

    I do in my project like this:-

    public boolean isInternetAvailable() {
        return internet.isAvailable();
    }
    

提交回复
热议问题