1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.launcher2; 18 19 import android.content.ContentValues; 20 import android.content.Intent; 21 import android.graphics.drawable.Drawable; 22 import android.graphics.Bitmap; 23 import android.net.Uri; 24 25 class LiveFolderInfo extends FolderInfo { 26 27 /** 28 * The base intent, if it exists. 29 */ 30 Intent baseIntent; 31 32 /** 33 * The live folder's content uri. 34 */ 35 Uri uri; 36 37 /** 38 * The live folder's display type. 39 */ 40 int displayMode; 41 42 /** 43 * The live folder icon. 44 */ 45 Bitmap icon; 46 47 /** 48 * Reference to the live folder icon as an application's resource. 49 */ 50 Intent.ShortcutIconResource iconResource; 51 52 LiveFolderInfo() { 53 itemType = LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER; 54 } 55 56 @Override 57 void onAddToDatabase(ContentValues values) { 58 super.onAddToDatabase(values); 59 values.put(LauncherSettings.Favorites.TITLE, title.toString()); 60 values.put(LauncherSettings.Favorites.URI, uri.toString()); 61 if (baseIntent != null) { 62 values.put(LauncherSettings.Favorites.INTENT, baseIntent.toUri(0)); 63 } 64 values.put(LauncherSettings.Favorites.ICON_TYPE, LauncherSettings.Favorites.ICON_TYPE_RESOURCE); 65 values.put(LauncherSettings.Favorites.DISPLAY_MODE, displayMode); 66 if (iconResource != null) { 67 values.put(LauncherSettings.Favorites.ICON_PACKAGE, iconResource.packageName); 68 values.put(LauncherSettings.Favorites.ICON_RESOURCE, iconResource.resourceName); 69 } 70 } 71 } 72