This tag is used for internet related questions on the Android Operating System.
Questions tagged [android-internet]
228 questions
-3
votes
1 answer
Intranet Connectivity through Android Emulator
I have tried searching how to get access to Intranet access on Android Simulator,Though i found lot of articles but could not found a solution.
I am able to access internet when i configured the proxy in the imulator.
I am able to access Google.com…

Ramanee
- 1
-4
votes
1 answer
Open Another Activity When There Is No Network
I want to open another activity which displays no internet connection if there is no network. Can I do that? please help.

Nasim
- 125
- 2
- 12
-4
votes
2 answers
Checking if a user is connected to the network in android
In my main activity i have
if (isNetworkAvailable() == true) {
Log.i("testing", "available");
} else {
Log.i("test", "unaivalibale");
}
Then below i have the method as
private boolean isNetworkAvailable() {
…

Geoff
- 6,277
- 23
- 87
- 197