TvInteractiveAppServiceInfo.SupportedTypes プロパティ

定義

サポートされている対話型アプリの種類を取得します。

public int SupportedTypes { [Android.Runtime.Register("getSupportedTypes", "()I", "", ApiSince=33)] get; }
[<get: Android.Runtime.Register("getSupportedTypes", "()I", "", ApiSince=33)>]
member this.SupportedTypes : int

プロパティ値

サポートされている型を表す int ビット マップ。

属性

注釈

サポートされている対話型アプリの種類を取得します。

サポートされている対話型アプリの種類は、ビット マップ形式です。 例:

<code>
              int types = tvInteractiveAppInfo.getSupportedTypes();
              if (types & TvInteractiveAppInfo.INTERACTIVE_APP_TYPE_HBBTV != 0) {
                // HbbTV type is supported. Do something...
              }
              if (types & TvInteractiveAppInfo.INTERACTIVE_APP_TYPE_ATSC == 0) {
                // ATSC type is not supported. Do something...
              }
</code>

android.media.tv.interactive.TvInteractiveAppServiceInfo.getSupportedTypes()Java ドキュメント。

このページの一部は、によって作成および共有された作業に基づく変更であり、に記載されている条件に従って使用されます。

適用対象