LiveFolders 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
This class is obsoleted in this android platform
LiveFolder 是一个特殊文件夹,其内容由 a .android.content.ContentProvider
[Android.Runtime.Register("android/provider/LiveFolders", DoNotGenerateAcw=true)]
[System.Obsolete("This class is obsoleted in this android platform")]
public sealed class LiveFolders : Java.Lang.Object
[<Android.Runtime.Register("android/provider/LiveFolders", DoNotGenerateAcw=true)>]
[<System.Obsolete("This class is obsoleted in this android platform")>]
type LiveFolders = class
inherit Object
- 继承
- 属性
注解
LiveFolder 是一个特殊文件夹,其内容由 a .android.content.ContentProvider
若要创建实时文件夹,需要两个组件:
<ul><li>An 活动,可以响应意向操作 #ACTION_CREATE_LIVE_FOLDER
。 活动负责创建实时文件夹。</li li>><A android.content.ContentProvider
提供实时文件夹项。</li></ul>
<h3>生命周期</h3>
当用户想要创建实时文件夹时,系统会查找包含意向筛选器操作 #ACTION_CREATE_LIVE_FOLDER
的所有活动,并将列表呈现给用户。 当用户选择其中一个活动时,会使用 #ACTION_CREATE_LIVE_FOLDER
该操作调用该活动。 然后,活动将创建实时文件夹,并通过将其设置为一个 android.app.Activity#setResult(int, android.content.Intent) activity result
将它传回系统。 实时文件夹由内容提供程序 URI、名称、图标和显示模式描述。 最后,当用户打开实时文件夹时,系统会查询内容提供程序以检索文件夹的内容。
<h3>设置实时文件夹活动</h3>
以下代码示例演示如何编写创建实时文件夹的活动:
public static class MyLiveFolder extends Activity {
public static final Uri CONTENT_URI = Uri.parse("content://my.app/live");
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final Intent intent = getIntent();
final String action = intent.getAction();
if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI, "My LiveFolder",
R.drawable.ic_launcher_contacts_phones));
} else {
setResult(RESULT_CANCELED);
}
finish();
}
private static Intent createLiveFolder(Context context, Uri uri, String name,
int icon) {
final Intent intent = new Intent();
intent.setData(uri);
intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME, name);
intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON,
Intent.ShortcutIconResource.fromContext(context, icon));
intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE, LiveFolders.DISPLAY_MODE_LIST);
return intent;
}
}
实时文件夹如下 android.content.Intent
所述:
<table border=“2” width=“85%” align=“center” frame=“hsides” rules=“rows”>thead<>tr><th>Component</th th Type</>>>><<th th Description</><>th th Required</th></tr<>/thead<>
<tbody tr th URI/th><td URI<</td><td>>The ContentProvider URI</td><td align=“center”>Yes/td></tr><tr><th><#EXTRA_LIVE_FOLDER_NAME
/th><td>Extra String</td><td>The name of the live folder<></td td align=“center”>Yes<</td></tr><tr><th/th><><#EXTRA_LIVE_FOLDER_ICON
td Extra android.content.Intent.ShortcutIconResource
>>><><</Td><td>实时文件夹</td td<>align=“center”>Yes</td<>/tr<>tr><th<>#EXTRA_LIVE_FOLDER_DISPLAY_MODE
/th><td>Extra int</td td><>The display mode of the live folder. 该值必须是#DISPLAY_MODE_GRID
或 #DISPLAY_MODE_LIST
。</td><td align=“center”>Yes</td/tr><tr><th><#EXTRA_LIVE_FOLDER_BASE_INTENT
/th><td><> Extra Intent</td td>><When the user click an item inside a live folder, the system will fire the intent or if present, the live folder's base intent with the id of the item appended to the base intent's URI.</td td><align=“center”>No</td></tr></tbody></table>
<h3>设置内容提供程序</h3>
实时文件夹的内容提供程序必须在查询时返回 android.database.Cursor
其列与以下名称匹配的列:
<table border=“2” width=“85%” align=“center” frame=“hsides” rules=“rows”><thead<>tr><th>Column</th Type</>><><>th th Description<<>/th th>Required</th></tr></thead>
<tbody><tr><th><#NAME
/th><td>String</td td>><The name of the item</td><td td align=“center”>Yes</td<>/tr<>tr><th/th><<#DESCRIPTION
> td>String</td td><>The description of the item. 当实时文件夹的显示模式为#DISPLAY_MODE_GRID
时,将忽略说明。</td><td align=“center”>No</td></tr><tr><th><#INTENT
/th><td/td><android.content.Intent
td td><>The intent to fire when the item is clicked. 当实时文件夹定义基本意向时忽略。</td><td align=“center”>No</td></tr><tr><th><#ICON_BITMAP
/th><td>Bitmap</td td>><The icon for the item. 如果此列值不为 null,则列#ICON_PACKAGE
的值必须为 #ICON_RESOURCE
null。</td><td align=“center”>No</td></tr><tr><th><#ICON_PACKAGE
/th><td>String</td td>><The package of the item's icon. 如果此值不为 null,则必须指定列#ICON_RESOURCE
的值,并且该列#ICON_BITMAP
的值必须为 null。</td><td align=“center”>No</td></tr><tr><th><#ICON_RESOURCE
/th><td>String</td td>><项图标的资源名称。 如果此值不为 null,则必须指定列 #ICON_PACKAGE
的值,并且该列 #ICON_BITMAP
的值必须为 null。</td td><align=“center”>No</td></tr></tbody></table>
此成员已弃用。 Android 不再支持实时文件夹。 这些 API 已被引入android.os.Build.VERSION_CODES#HONEYCOMB
的新 AppWidget 集合 API 所取代。 它们提供实时文件夹的所有功能以及更多功能。 由于引入的安全问题,因此强烈建议不要使用实时文件夹 -- 发布实时文件夹需要使实时文件夹的所有数据显示可供所有应用程序使用,而没有保护该文件夹的权限。
适用于 . 的 android.provider.LiveFolders
Java 文档
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
字段
ActionCreateLiveFolder |
已过时.
活动操作:创建实时文件夹。 |
Description |
已过时.
内容提供程序列。 |
ExtraLiveFolderBaseIntent |
已过时.
用于定义实时文件夹的基本意向的额外名称。 |
ExtraLiveFolderDisplayMode |
已过时.
用于定义实时文件夹的显示模式的额外名称。 |
ExtraLiveFolderIcon |
已过时.
用于定义实时文件夹图标的额外名称。 |
ExtraLiveFolderName |
已过时.
用于定义实时文件夹名称的额外名称。 |
IconBitmap |
已过时.
内容提供程序列。 |
IconPackage |
已过时.
内容提供程序列。 |
IconResource |
已过时.
内容提供程序列。 |
Intent |
已过时.
内容提供程序列。 |
Name |
已过时.
内容提供程序列。 |
属性
Class |
已过时.
返回此 |
Handle |
已过时.
基础 Android 实例的句柄。 (继承自 Object) |
JniIdentityHashCode |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
JniPeerMembers |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
PeerReference |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
ThresholdClass |
已过时.
此 API 支持 Mono for Android 基础结构,不打算直接从代码使用。 (继承自 Object) |
ThresholdType |
已过时.
此 API 支持 Mono for Android 基础结构,不打算直接从代码使用。 (继承自 Object) |
方法
Clone() |
已过时.
创建并返回此对象的副本。 (继承自 Object) |
Dispose() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
Dispose(Boolean) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
Equals(Object) |
已过时.
指示其他对象是否“等于”此对象。 (继承自 Object) |
GetHashCode() |
已过时.
返回对象的哈希代码值。 (继承自 Object) |
JavaFinalize() |
已过时.
当垃圾回收确定不再引用该对象时,由对象上的垃圾回收器调用。 (继承自 Object) |
Notify() |
已过时.
唤醒正在等待此对象的监视器的单个线程。 (继承自 Object) |
NotifyAll() |
已过时.
唤醒正在等待此对象的监视器的所有线程。 (继承自 Object) |
SetHandle(IntPtr, JniHandleOwnership) |
已过时.
设置 Handle 属性。 (继承自 Object) |
ToArray<T>() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
ToString() |
已过时.
返回对象的字符串表示形式。 (继承自 Object) |
UnregisterFromRuntime() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
Wait() |
已过时.
使当前线程等待,直到唤醒它,通常是通过 em 通知/em> 或 <em>interrupted</em>。<>< (继承自 Object) |
Wait(Int64, Int32) |
已过时.
使当前线程等待直到唤醒,通常是通过 <em>通知</em> 或 <em interrupted</em>>,或直到经过一定数量的实时。 (继承自 Object) |
Wait(Int64) |
已过时.
使当前线程等待直到唤醒,通常是通过 <em>通知</em> 或 <em interrupted</em>>,或直到经过一定数量的实时。 (继承自 Object) |
显式接口实现
IJavaPeerable.Disposed() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.DisposeUnlessReferenced() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.Finalized() |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.JniManagedPeerState |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.SetJniIdentityHashCode(Int32) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
IJavaPeerable.SetPeerReference(JniObjectReference) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
扩展方法
JavaCast<TResult>(IJavaObject) |
已过时.
执行 Android 运行时检查的类型转换。 |
JavaCast<TResult>(IJavaObject) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |
GetJniTypeName(IJavaPeerable) |
已过时.
LiveFolder 是一个特殊文件夹,其内容由 a . |