欢迎来到天天文库
浏览记录
ID:15003219
大小:181.50 KB
页数:20页
时间:2018-07-31
《android之断点续传下载》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Android之断点续传下载已有31次阅读2013-7-2915:39
2、系统分类:Android开发
3、 Android, 断点续传今天学习了Android开发中比较难的一个环节,就是断点续传下载,很多人看到这个标题就感觉头大,的确,如果没有良好的逻辑思维,这块的确很难搞明白。下面我就将自己学到的知识和一些见解写下供那些在这个环节还烦恼的人参考。这里我以下载mp3文件为例。断点续传下载,顾名思义,那就是我们在一次下载未结束时,退出下载,第二次下载时会接着第一次下载的进度继续下载。那么怎么记录第一次下载的数据呢,这里肯定就要用到数据库了。下面就是我创建数据库的一个S
4、QLiteOpenHelper类。用来首次运行时创建数据库DBHelper类:packagecn.yj3g.DBHelper;importandroid.content.Context;importandroid.database.sqlite.SQLiteDatabase;importandroid.database.sqlite.SQLiteOpenHelper; /** *建立一个数据库帮助类 */publicclassDBHelperextendsSQLiteOpenHelper{ //download.db-->数据库名 publ
5、icDBHelper(Contextcontext){ super(context,"download.db",null,1); } /** *在download.db数据库下创建一个download_info表存储下载信息 */ @Override publicvoidonCreate(SQLiteDatabasedb){ db.execSQL("createtabledownload_info(_idintegerPRIMARYKEYAUTOINCREMENT,thread_idinteger,"
6、 +"start_posinteger,end_posinteger,compelete_sizeinteger,urlchar)"); } @Override publicvoidonUpgrade(SQLiteDatabasedb,intoldVersion,intnewVersion){ }}下面来看主界面的布局,在这里,我只设计了一个ListView来显示下载的音乐的名称,和一个开始下载按钮和一个暂停按钮。布局文件如下:main.xml:7、earLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/llRoot"> 8、 android:layout_height="fill_parent"> list_item.xml: 9、 android:layout_height="wrap_content"> 10、ll_pa
7、earLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/llRoot"> 8、 android:layout_height="fill_parent"> list_item.xml: 9、 android:layout_height="wrap_content"> 10、ll_pa
8、 android:layout_height="fill_parent"> list_item.xml: 9、 android:layout_height="wrap_content"> 10、ll_pa
9、 android:layout_height="wrap_content"> 10、ll_pa
10、ll_pa
此文档下载收益归作者所有