當前位置: 首頁>>代碼示例>>Java>>正文


Java Media.PICASA_ID屬性代碼示例

本文整理匯總了Java中android.provider.MediaStore.Images.Media.PICASA_ID屬性的典型用法代碼示例。如果您正苦於以下問題:Java Media.PICASA_ID屬性的具體用法?Java Media.PICASA_ID怎麽用?Java Media.PICASA_ID使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在android.provider.MediaStore.Images.Media的用法示例。


在下文中一共展示了Media.PICASA_ID屬性的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: buildImagesBucketList

private void buildImagesBucketList() {
	getThumbnail();
	mBucketList.clear();

	String columns[] = new String[] { Media._ID, Media.BUCKET_ID, Media.PICASA_ID, Media.DATA, Media.DISPLAY_NAME, Media.TITLE, Media.SIZE, Media.BUCKET_DISPLAY_NAME };
	Cursor cursor = contentResolver.query(Media.EXTERNAL_CONTENT_URI, columns, null, null, null);
	if (cursor.moveToFirst()) {
		int photoIDIndex = cursor.getColumnIndexOrThrow(Media._ID);
		int photoPathIndex = cursor.getColumnIndexOrThrow(Media.DATA);
		int bucketDisplayNameIndex = cursor.getColumnIndexOrThrow(Media.BUCKET_DISPLAY_NAME);
		int bucketIdIndex = cursor.getColumnIndexOrThrow(Media.BUCKET_ID);

		do {
			String _id = cursor.getString(photoIDIndex);
			String path = cursor.getString(photoPathIndex);
			String bucketName = cursor.getString(bucketDisplayNameIndex);
			String bucketId = cursor.getString(bucketIdIndex);

			ImageBucket bucket = mBucketList.get(bucketId);
			if (bucket == null) {
				bucket = new ImageBucket();
				mBucketList.put(bucketId, bucket);
				bucket.bucketList = new ArrayList<ImageItem>();
				bucket.bucketName = bucketName;
			}
			bucket.count++;
			ImageItem imageItem = new ImageItem();
			imageItem.setImageId(_id);
			imageItem.setImagePath(path);
			imageItem.setThumbnailPath(mThumbnailList.get(_id));
			bucket.bucketList.add(imageItem);

		} while (cursor.moveToNext());
	}
	hasBuildImagesBucketList = true;
}
 
開發者ID:Dreamer206602,項目名稱:SimplifyReader2,代碼行數:36,代碼來源:ImagePickerHelper.java

示例2: getImageBucket

private void getImageBucket() {
	// 構造縮略圖索引
	getThumbnail();
	// 構造相冊索引
	String columns[] = new String[] { Media._ID, Media.BUCKET_ID, Media.PICASA_ID, Media.DATA, Media.DISPLAY_NAME, Media.TITLE, Media.SIZE, Media.BUCKET_DISPLAY_NAME };
	// 得到一個遊標
	Cursor cur = cr.query(Media.EXTERNAL_CONTENT_URI, columns, null, null, "_id DESC");
	if (cur.moveToFirst()) {
		// 獲取指定列的索引
		int photoIDIndex = cur.getColumnIndexOrThrow(Media._ID);
		int photoPathIndex = cur.getColumnIndexOrThrow(Media.DATA);
		int bucketDisplayNameIndex = cur.getColumnIndexOrThrow(Media.BUCKET_DISPLAY_NAME);
		int bucketIdIndex = cur.getColumnIndexOrThrow(Media.BUCKET_ID);
		do {
			String _id = cur.getString(photoIDIndex);
			String path = cur.getString(photoPathIndex);
			String bucketName = cur.getString(bucketDisplayNameIndex);
			String bucketId = cur.getString(bucketIdIndex);
			ImageBucket bucket = bucketList.get(bucketId);
			if (bucket == null) {
				bucket = new ImageBucket();
				bucketList.put(bucketId, bucket);
				bucket.imageList = new ArrayList<ImageItem>();
				bucket.bucketName = bucketName;
			}
			bucket.count++;
			ImageItem imageItem = new ImageItem();
			imageItem.imageId = _id;
			imageItem.imagePath = path;
			imageItem.thumbnailPath = thumbnailList.get(_id);
			imageItem.duration = "00:00";
			bucket.imageList.add(imageItem);
		} while (cur.moveToNext());
	}
}
 
開發者ID:do-android,項目名稱:do_Album,代碼行數:35,代碼來源:AlbumHelper.java

示例3: buildImagesBucketList

public static HashMap<String, ImageBucket> buildImagesBucketList(Context context) {
    ContentResolver cr = context.getContentResolver();
    HashMap<String, ImageBucket> bucketList = new HashMap<String, ImageBucket>();

    // 構造縮略圖索引
    HashMap<String, String> thumbnailList = getThumbnail(cr);

    // 構造相冊索引
    String columns[] = new String[]{Media._ID, Media.BUCKET_ID,
            Media.PICASA_ID, Media.DATA, Media.DISPLAY_NAME, Media.TITLE,
            Media.SIZE, Media.BUCKET_DISPLAY_NAME};
    // 得到一個遊標
    Cursor cur = cr.query(Media.EXTERNAL_CONTENT_URI, columns, null, null,
            null);
    if (cur.moveToFirst()) {
        // 獲取指定列的索引
        int photoIDIndex = cur.getColumnIndexOrThrow(Media._ID);
        int photoPathIndex = cur.getColumnIndexOrThrow(Media.DATA);
        int bucketDisplayNameIndex = cur
                .getColumnIndexOrThrow(Media.BUCKET_DISPLAY_NAME);
        int bucketIdIndex = cur.getColumnIndexOrThrow(Media.BUCKET_ID);

        do {
            String _id = cur.getString(photoIDIndex);
            String path = cur.getString(photoPathIndex);
            String bucketName = cur.getString(bucketDisplayNameIndex);
            String bucketId = cur.getString(bucketIdIndex);

            ImageBucket bucket = bucketList.get(bucketId);
            if (bucket == null) {
                bucket = new ImageBucket();
                bucketList.put(bucketId, bucket);
                bucket.imageList = new ArrayList<ImageItem>();
                bucket.bucketName = bucketName;
            }
            bucket.count++;
            ImageItem imageItem = new ImageItem();
            imageItem.setImageId(_id);
            imageItem.setImagePath(path);
            imageItem.setThumbnailPath(thumbnailList.get(_id));
            bucket.imageList.add(imageItem);

        } while (cur.moveToNext());
    }
    cur.close();
    return bucketList;
}
 
開發者ID:gitxuyulin,項目名稱:EditorImageAndText,代碼行數:47,代碼來源:ImagePathUtil.java

示例4: buildImageBucketList

public void buildImageBucketList(){
    //先獲取縮略圖索引
    getThumbnail();
    //查詢獲取相冊索引
    String columns[] = new String[] {
            Media._ID,
            Media.BUCKET_ID,
            Media.PICASA_ID,
            Media.DATA,
            Media.DISPLAY_NAME,
            Media.TITLE,
            Media.SIZE,
            Media.BUCKET_DISPLAY_NAME };
    Cursor cursor = resolver.query(Media.EXTERNAL_CONTENT_URI, columns, null, null,
            Media._ID+" desc");
    if (cursor.moveToFirst()){
        // 獲取指定列的索引
        int photoIDIndex = cursor.getColumnIndexOrThrow(Media._ID);
        int photoPathIndex = cursor.getColumnIndexOrThrow(Media.DATA);
        int photoNameIndex = cursor.getColumnIndexOrThrow(Media.DISPLAY_NAME);
        int photoTitleIndex = cursor.getColumnIndexOrThrow(Media.TITLE);
        int photoSizeIndex = cursor.getColumnIndexOrThrow(Media.SIZE);
        int bucketDisplayNameIndex = cursor
                .getColumnIndexOrThrow(Media.BUCKET_DISPLAY_NAME);
        int bucketIdIndex = cursor.getColumnIndexOrThrow(Media.BUCKET_ID);
        int picasaIdIndex = cursor.getColumnIndexOrThrow(Media.PICASA_ID);
        // 獲取圖片總數
        int totalNum = cursor.getCount();
        do {
            String _id = cursor.getString(photoIDIndex);
            String name = cursor.getString(photoNameIndex);
            String path = cursor.getString(photoPathIndex);
            String title = cursor.getString(photoTitleIndex);
            String size = cursor.getString(photoSizeIndex);
            String bucketName = cursor.getString(bucketDisplayNameIndex);
            String bucketId = cursor.getString(bucketIdIndex);
            String picasaId = cursor.getString(picasaIdIndex);

            ImageBucket bucket = bucketList.get(bucketId);
            if (bucket == null) {
                bucket = new ImageBucket();
                bucketList.put(bucketId, bucket);
                bucket.imageList = new ArrayList<>();
                bucket.bucketName = bucketName;
            }
            bucket.count++;
            ImageItem imageItem = new ImageItem();
            imageItem.imageId = _id;
            imageItem.imagePath = path;
            imageItem.thumbnailPath = thumbnailList.get(_id);
            bucket.imageList.add(imageItem);
        }while (cursor.moveToNext());

    }
    cursor.close();
    hasBuildImagesBucketList = true;
}
 
開發者ID:zillachan,項目名稱:LibZilla,代碼行數:57,代碼來源:AlbumHelper.java


注:本文中的android.provider.MediaStore.Images.Media.PICASA_ID屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。