当前位置: 首页>>代码示例>>Java>>正文


Java FileDownloadStatus.error方法代码示例

本文整理汇总了Java中com.liulishuo.filedownloader.model.FileDownloadStatus.error方法的典型用法代码示例。如果您正苦于以下问题:Java FileDownloadStatus.error方法的具体用法?Java FileDownloadStatus.error怎么用?Java FileDownloadStatus.error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.liulishuo.filedownloader.model.FileDownloadStatus的用法示例。


在下文中一共展示了FileDownloadStatus.error方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: updateNotDownloaded

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
public void updateNotDownloaded(final int status, final long sofar, final long total) {
    if (sofar > 0 && total > 0) {
        final float percent = sofar
                / (float) total;
        taskPb.setMax(100);
        taskPb.setProgress((int) (percent * 100));
    } else {
        taskPb.setMax(1);
        taskPb.setProgress(0);
    }

    switch (status) {
        case FileDownloadStatus.error:
            taskStatusTv.setText(R.string.tasks_manager_demo_status_error);
            break;
        case FileDownloadStatus.paused:
            taskStatusTv.setText(R.string.tasks_manager_demo_status_paused);
            break;
        default:
            taskStatusTv.setText(R.string.tasks_manager_demo_status_not_downloaded);
            break;
    }
    taskActionBtn.setText(R.string.start);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:25,代码来源:TasksManagerDemoActivity.java

示例2: handleMessage

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public boolean handleMessage(Message msg) {
    final int status = msg.what;

    switch (status) {
        case FileDownloadStatus.progress:
            handleProgress(SystemClock.elapsedRealtime(), true);
            break;
        case FileDownloadStatus.completed:
            if (interceptBeforeCompleted()) {
                return true;
            }

            try {
                handleCompleted();
            } catch (IOException e) {
                onError(e);
                return true;
            }
            break;
        case FileDownloadStatus.retry:
            handleRetry((Exception) msg.obj, msg.arg1);
            break;
        case FileDownloadStatus.paused:
            handlePaused();
            break;
        case FileDownloadStatus.error:
            handleError((Exception) msg.obj);
            break;
    }

    if (FileDownloadStatus.isOver(status)) {
        handlerThread.quit();
    }

    return true;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:38,代码来源:DownloadStatusCallback.java

示例3: remove

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
/**
 * @param willRemoveDownload will be remove
 */
public boolean remove(final BaseDownloadTask.IRunningTask willRemoveDownload,
                      MessageSnapshot snapshot) {
    final byte removeByStatus = snapshot.getStatus();
    boolean succeed;
    synchronized (mList) {
        succeed = mList.remove(willRemoveDownload);
    }
    if (FileDownloadLog.NEED_LOG) {
        if (mList.size() == 0) {
            FileDownloadLog.v(this, "remove %s left %d %d",
                    willRemoveDownload, removeByStatus, mList.size());
        }
    }

    if (succeed) {
        final IFileDownloadMessenger messenger = willRemoveDownload.getMessageHandler().
                getMessenger();
        // Notify 2 Listener
        switch (removeByStatus) {
            case FileDownloadStatus.warn:
                messenger.notifyWarn(snapshot);
                break;
            case FileDownloadStatus.error:
                messenger.notifyError(snapshot);
                break;
            case FileDownloadStatus.paused:
                messenger.notifyPaused(snapshot);
                break;
            case FileDownloadStatus.completed:
                messenger.notifyBlockComplete(MessageSnapshotTaker.takeBlockCompleted(snapshot));
                break;
        }

    } else {
        FileDownloadLog.e(this, "remove error, not exist: %s %d", willRemoveDownload,
                removeByStatus);
    }

    return succeed;
}
 
开发者ID:angcyo,项目名称:RLibrary,代码行数:44,代码来源:FileDownloadList.java

示例4: show

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public void show(boolean statusChanged, int status, boolean isShowProgress) {

    String desc = getDesc();
    switch (status) {
        case FileDownloadStatus.pending:
            desc += " pending";
            break;
        case FileDownloadStatus.started:
            desc += " started";
            break;
        case FileDownloadStatus.progress:
            desc += " progress";
            break;
        case FileDownloadStatus.retry:
            desc += " retry";
            break;
        case FileDownloadStatus.error:
            desc += " error";
            break;
        case FileDownloadStatus.paused:
            desc += " paused";
            break;
        case FileDownloadStatus.completed:
            desc += " completed";
            break;
        case FileDownloadStatus.warn:
            desc += " warn";
            break;
    }

    builder.setContentTitle(getTitle())
            .setContentText(desc);


    if (statusChanged) {
        builder.setTicker(desc);
    }

    builder.setProgress(getTotal(), getSofar(), !isShowProgress);
    getManager().notify(getId(), builder.build());
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:43,代码来源:NotificationMinSetActivity.java

示例5: createFromParcel

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public MessageSnapshot createFromParcel(Parcel source) {
    boolean largeFile = source.readByte() == 1;
    byte status = source.readByte();
    final MessageSnapshot snapshot;
    switch (status) {
        case FileDownloadStatus.pending:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.PendingMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.PendingMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.started:
            snapshot = new StartedMessageSnapshot(source);
            break;
        case FileDownloadStatus.connected:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ConnectedMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ConnectedMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.progress:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ProgressMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ProgressMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.retry:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.RetryMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.RetryMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.error:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ErrorMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ErrorMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.completed:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.CompletedSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.CompletedSnapshot(source);
            }
            break;
        case FileDownloadStatus.warn:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.WarnMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.WarnMessageSnapshot(source);
            }
            break;
        default:
            snapshot = null;
    }

    if (snapshot != null) {
        snapshot.isLargeFile = largeFile;
    } else {
        throw new IllegalStateException("Can't restore the snapshot because unknown " +
                "status: " + status);
    }

    return snapshot;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:72,代码来源:MessageSnapshot.java

示例6: getStatus

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public byte getStatus() {
    return FileDownloadStatus.error;
}
 
开发者ID:angcyo,项目名称:RLibrary,代码行数:5,代码来源:LargeMessageSnapshot.java

示例7: prepareErrorMessage

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public MessageSnapshot prepareErrorMessage(Throwable cause) {
    mStatus = FileDownloadStatus.error;
    mThrowable = cause;
    return MessageSnapshotTaker.catchException(getId(), getSofarBytes(), cause);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:7,代码来源:DownloadTaskHunter.java


注:本文中的com.liulishuo.filedownloader.model.FileDownloadStatus.error方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。