|
23 | 23 | <action android:name="android.intent.action.PICK" /> |
24 | 24 | <action android:name="android.intent.action.GET_CONTENT" /> |
25 | 25 | <action android:name="android.intent.action.INSERT" /> |
| 26 | + <action android:name="com.android.camera.action.REVIEW" /><!-- Used by camera to view photo taken --> |
26 | 27 |
|
27 | 28 | <category android:name="android.intent.category.DEFAULT" /> |
28 | 29 | <category android:name="android.intent.category.BROWSABLE" /> |
|
42 | 43 | <category android:name="android.intent.category.BROWSABLE" /> |
43 | 44 | </intent-filter> |
44 | 45 |
|
| 46 | + <!-- scheme-intents without mime (mime==null) --> |
45 | 47 | <intent-filter android:label="@string/intent_filter_label"> |
46 | | - <action android:name="android.intent.action.VIEW" > |
47 | | - </action> |
| 48 | + <action android:name="android.intent.action.VIEW" /> |
| 49 | + <action android:name="android.intent.action.EDIT" /> |
| 50 | + <action android:name="android.intent.action.PICK" /> |
| 51 | + <action android:name="android.intent.action.GET_CONTENT" /> |
| 52 | + <action android:name="android.intent.action.INSERT" /> |
48 | 53 |
|
49 | 54 | <category android:name="android.intent.category.DEFAULT" /> |
50 | 55 | <category android:name="android.intent.category.BROWSABLE" /> |
|
77 | 82 | <data android:scheme="market" /> |
78 | 83 | <data android:scheme="store" /> |
79 | 84 | <data android:scheme="android" /> |
| 85 | + </intent-filter> |
| 86 | + <!-- same scheme-intents but with mime (mime!=null) --> |
| 87 | + <intent-filter android:label="@string/intent_filter_label"> |
| 88 | + <action android:name="android.intent.action.VIEW" /> |
| 89 | + <action android:name="android.intent.action.EDIT" /> |
| 90 | + <action android:name="android.intent.action.PICK" /> |
| 91 | + <action android:name="android.intent.action.GET_CONTENT" /> |
| 92 | + <action android:name="android.intent.action.INSERT" /> |
80 | 93 |
|
| 94 | + <category android:name="android.intent.category.DEFAULT" /> |
| 95 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 96 | + |
| 97 | + <data android:scheme="http" /> |
| 98 | + <data android:scheme="https" /> |
| 99 | + <data android:scheme="about" /> |
| 100 | + <data android:scheme="javascript" /> |
| 101 | + <data android:scheme="mailto" /> |
| 102 | + <data android:scheme="geo" /> |
| 103 | + <data android:scheme="file" /> |
| 104 | + |
| 105 | + <data android:scheme="rtsp" /> |
| 106 | + <data android:scheme="rtmp" /> |
| 107 | + <data android:scheme="ftp" /> |
| 108 | + <data android:scheme="sftp" /> |
| 109 | + |
| 110 | + <data android:scheme="skype" /> |
| 111 | + <data android:scheme="sms" /> |
| 112 | + <data android:scheme="smsto" /> |
| 113 | + <data android:scheme="mms" /> |
| 114 | + <data android:scheme="mmsto" /> |
| 115 | + <data android:scheme="spotify" /> |
| 116 | + <data android:scheme="tel" /> |
| 117 | + <data android:scheme="voicemail" /> |
| 118 | + <data android:scheme="view-source" /> |
| 119 | + <data android:scheme="sqlite" /> |
| 120 | + |
| 121 | + <!-- Intercept Google play links --> |
| 122 | + <data android:scheme="market" /> |
| 123 | + <data android:scheme="store" /> |
| 124 | + <data android:scheme="android" /> |
| 125 | + |
| 126 | + <data android:mimeType="*/*" /> |
81 | 127 | </intent-filter> |
| 128 | + |
82 | 129 | <intent-filter android:label="@string/intent_filter_label"> |
83 | | - <action android:name="android.intent.action.PICK" > |
84 | | - </action> |
| 130 | + <action android:name="android.intent.action.PICK" /> |
85 | 131 |
|
86 | 132 | <category android:name="android.intent.category.DEFAULT" /> |
87 | 133 | </intent-filter> |
|
0 commit comments