例说 android:mimeType

本文通过SDK示例NotePad探讨Android的mimeType使用。当启动Intent.ACTION_EDIT并传递特定uri时,系统如何找到对应Activity。过程包括解析uri,查找AndroidManifest.xml中authorities匹配的provider,调用ContentProvider的getType方法获取mimeType,该类型用于识别数据类型,如"vnd.android.cursor.item/vnd.google.note"。ContentProvider的authorities定义了其在系统中的唯一标识。
摘要由CSDN通过智能技术生成

实例代码为SDK自带的sample NotePad

startActivity(new Intent(Intent.ACTION_EDIT, uri));

其中uri为:content://com.google.provider.NotePad/notes/1

要启动的activity为    
<activity android:name="NoteEditor"
            android:theme="@android:style/Theme.Light"
            android:label="@string/title_note"
            android:screenOrientation="sensor"
            android:configChanges="keyboardHidden|orientation"
        >
            <!-- This filter says that we can view or edit the data of
                 a single note -->
            <intent-filter android:label="@string/resolve_edit">
                <action android:name="android.intent.action.VIEW" />
                <action android:name="android.inte
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值