Header Ads

ad728
  • Breaking News

    Check Internet Connection

    If ဖြင့် Internet Connection ပြန်စစ်ပြီး တစ်ခုခုလုပ်ဆောင်ရန်

    if (amIConnected()){
        // Do someting .....
    }else {
        Toast.makeText(this, "You are Offline", Toast.LENGTH_SHORT).show();}


    Internet Connection စစ်ရန်



    public  boolean amIConnected(){
        ConnectivityManager connectivityManager = (ConnectivityManager) 
        MainActivity.this.getSystemService(MainActivity.this.CONNECTIVITY_SERVICE);

        NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();  

      return networkInfo != null && networkInfo.isConnected();       }


    No comments

    fix Connection Information error at Wordpress

    Wordpress => add the following code in your Config.php file =>  define('FS_METHOD', 'direct');

    Powered by Blogger.