Skip to content

Instantly share code, notes, and snippets.

View Anurag--Singh's full-sized avatar

Anurag Singh Anurag--Singh

View GitHub Profile
@Anurag--Singh
Anurag--Singh / FileProgress.java
Created January 27, 2017 11:33
Okhttp3 file download with progress return
import java.io.IOException;
import okhttp3.Interceptor;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import okhttp3.ResponseBody;
import okio.Buffer;
import okio.BufferedSource;
import okio.ForwardingSource;
@Anurag--Singh
Anurag--Singh / Androidmanifest.xml
Last active January 19, 2017 19:55
View hide on Keyboard open or visible and can scroll the contents
<activity
android:name=".TestActivity"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>