Skip to content

Instantly share code, notes, and snippets.

@kailash09dabhi
kailash09dabhi / Internet.java
Last active July 20, 2016 12:16
Check if internet is available or not
/*
* Copyright (C) 2016 Kailash Dabhi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@kailash09dabhi
kailash09dabhi / KeyboardUtil.java
Created October 7, 2014 07:27
KeyBoard Utility class for detecting keyboard appear disappear events and showing and hiding keyboard.
package com.upicit.utility;
import android.app.Activity;
import android.content.Context;
import android.inputmethodservice.KeyboardView;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.view.ViewTreeObserver;
import android.view.inputmethod.InputMethodManager;