Giter VIP home page Giter VIP logo

checkinternet's Introduction

بِسْمِ اللَّـهِ الرَّحْمَـٰنِ الرَّحِيمِ

CheckInternet

Arabic

مكتبة بسيطة لنظام الاندرويد
لفحص الأنواع المختلفة من اتصالات الشبكة،
للسماح لتطبيق بالتحقق من حالة اتصال الإنترنت
قبل إجراء طلبات
HTTP.

Endlish

A Simple Android library to check  network connection,
to allow an app check internet connectivity status before making HTTP Requests.

Installing

	repositories {
			
			maven { url 'https://jitpack.io' }
		}
	
  
  

	dependencies {
	implementation 'com.github.3shy:CheckInternet:2.0.0'
	}

Permissions

	<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
	<uses-permission android:name="android.permission.INTERNET"/>
	<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

Quick Example

	import com.nocv.newapp.checker.Checker;
	import com.nocv.newapp.checker.interfaced.Monitor;


	public class Mohamed_Ashry extends AppCompatActivity {

	    @Override
	    protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		Checker.from(this).monitor(new Monitor.ConnectivityListener() {
		    @Override
		    public void onConnectivityChanged(int connectionType, boolean isConnected, boolean isFast) {
			if (isConnected){
			    // have Internet Connection
			    Toast.makeText(Mohamed_Ashry.this, "have Internet Connection", Toast.LENGTH_SHORT).show();
			}else {
			    // don't have Internet Connection
			    Toast.makeText(Mohamed_Ashry.this, "don't have Internet Connection", Toast.LENGTH_SHORT).show();

			}


		    }
		});


	    }

		    @Override
		    protected void onStop() {
			Checker.from(this).stop();
			super.onStop();
		 }
	}

Author

Mohamed Ashry GitHub 3shry.

Mohamed Ashry FaceBook 3shry.

Mohamed Ashry Linkedin.

checkinternet's People

Contributors

3shy avatar

Stargazers

Mustafa Ghandour avatar  avatar Mohamed Elkholy avatar Alkhatib Hamad Adam avatar

Watchers

Mohamed Elkholy avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.