次の方法で共有


Intent.UriAndroidAppScheme フィールド

定義

注意事項

This constant will be removed in the future version. Use Android.Content.IntentUriType enum directly instead of this field.

使用するフラグと #toUri#parseUri: URI 文字列には、常に "android-app:" スキームがあります。

[Android.Runtime.Register("URI_ANDROID_APP_SCHEME", ApiSince=22)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Content.IntentUriType enum directly instead of this field.", true)]
public const Android.Content.IntentUriType UriAndroidAppScheme = 2;
[<Android.Runtime.Register("URI_ANDROID_APP_SCHEME", ApiSince=22)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Content.IntentUriType enum directly instead of this field.", true)>]
val mutable UriAndroidAppScheme : Android.Content.IntentUriType

フィールド値

Value = 2

実装

属性

注釈

使用するフラグと #toUri#parseUri: URI 文字列には、常に "android-app:" スキームがあります。 これは、特定の #URI_INTENT_SCHEME パッケージ名に配信される http/https URI の場合の形式が単純なバリエーションです。 形式は次のようになります:

android-app://{package_id}[/{scheme}[/{host}[/{path}]]][#Intent;{...}]

このスキームでは、必須のスキーム package_id のみです。 ホストを含める場合は、スキームも含める必要があります。パスを含む場合は、ホストとスキームの両方も必要です。 最後の #Intent;フラグメントは、スキーム、ホスト、またはパスなしで使用できます。 基本意図は常に明示的なパッケージ名を持つため、これは、 を持つ #setSelector意図では使用できないことに注意してください。

このスキームを Intent オブジェクトにマップする方法の例を次に示します。

<table border="2" width="85%" align="center" frame="hsides" rules="rows"><colgroup align="left" /<>colgroup align="left" /><thead><tr><th>URI</th th>><Intent</th></tr></thead>

<tbody><tr><td>android-app://com.example.app</td td><td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">tr td>Action: </td><td><#ACTION_MAIN/td></tr tr>><<td>Package: </td td></td>><<com.example.app/tr<>/table></td<>/tr><td><>android-app://com.example.app/http/example.com</td td td><><table style="margin:0;><<border:0;cellpadding:0;cellspacing:0">tr td>Action: </td><td>#ACTION_VIEW</td></tr tr><td>><Data: </td td></td>http://example.com/<></tr tr><><td>Package: </td><td/td><<com.example.app>/tr></table></td></tr<><>tdandroid-app://com.example.app/http/example.com/foo?1234<>/td td><><table style="margin:0;><<border:0;cellpadding:0;cellspacing:0">tr td>Action: </td><td>#ACTION_VIEW</td></tr tr><td>><Data: </td td></td>http://example.com/foo?1234<></tr tr><><td>Package: </td><td/td><<com.example.app>/tr></table></td></tr<><>tdandroid-app://com.example.app/<br />#Intent;action=com.example.MY_ACTION;end<>/td td><><table style="margin:0;><<border:0;cellpadding:0;cellspacing:0">tr td>Action: </td><td><com.example.MY_ACTION/td></tr tr>><<td>Package: </td td></td>><<com.example.app/tr<>/table></td<>/tr><td><>android-app://com.example.app/http/example.com/foo?1234<br />#Intent;action=com.example.MY_ACTION;end</td td td><><table style="margin:0;><<border:0;cellpadding:0;cellspacing:0">tr td>Action: </td><td<>com.example.MY_ACTION/td></tr tr><td>><Data: </td><td/td<>><http://example.com/foo?1234/tr tr>><<td>Package: </td><td/td>><<com.example.app/tr></table></td<>/tr<><>tdandroid-app://com.example.app/<br />#Intent;action=com.example.MY_ACTION;<br />i.some_int=100;S.some_str=hello;end<>/td td><><table border="" style="margin:0" >><<<tr><td>Action: </td><td><com.example.MY_ACTION/td></tr tr><<>td>Package: </td><td/td><com.example.app></tr tr><<>td>Extras: </td><td/td><><some_int=(int)100<br />some_str=(String)hello/tr></table></td></tr></tbody></table>

の Java ドキュメントandroid.content.Intent.URI_ANDROID_APP_SCHEME

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象