IThumbViewInfo.java 496 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
package com.yidianling.consultant.preview;

import android.graphics.Rect;
import android.os.Parcelable;


/**
 * Deprecated: 图片预览接口
 *
 * @author rainb
 */
public interface IThumbViewInfo extends Parcelable {

    /****
     * 图片地址
     * @return String
     * ****/
    String getUrl();

    /**
     * 记录坐标
     *
     * @return Rect
     ***/
    Rect getBounds();


    /**
     * 获取视频链接
     ***/
31 32 33
    String getCover();

    int getSourcesType();
34 35 36


}