Posts

Showing posts from February, 2017

Android Video download using Service class

Image
Android Video download using Service.class HI Today we see how to downloading video using android service class In my last blog I show how to downloading video using AsyncTask ClickHere to visit Some time an asynctask take much time to downloading video so if you are showing some progressdialog for downloading it may freez your UI you can't do any other task upto downloading the video Using service class the downloading take may goes to background and you may operate other task of an application So lets start the coding Lets create a layout for the MainActivity < RelativeLayout xmlns:android = "http://schemas.android.com/apk/res/android"    xmlns:tools = "http://schemas.android.com/tools"    android:layout_width = "match_parent"    android:layout_height = "match_parent"    android:paddingBottom = "@dimen/activity_vertical_margin"    andro