Language

CarrierConfigManager.KeyRegionalSatelliteEarfcnBundle Field

Definition

A PersistableBundle that contains a list of key-value pairs, where the values are integer arrays.

[Android.Runtime.Register("KEY_REGIONAL_SATELLITE_EARFCN_BUNDLE", ApiSince=36)]
public const string KeyRegionalSatelliteEarfcnBundle;
[<Android.Runtime.Register("KEY_REGIONAL_SATELLITE_EARFCN_BUNDLE", ApiSince=36)>]
val mutable KeyRegionalSatelliteEarfcnBundle : string

Field Value

Attributes

Remarks

A PersistableBundle that contains a list of key-value pairs, where the values are integer arrays.

Keys are the IDs of regional satellite configs as strings and values are integer arrays of earfcns in the corresponding regions.

An example config for two regions "1" and "2":

{@code
<carrier_config>
<pbundle_as_map name="regional_satellite_earfcn_bundle">
<int-array name = "1" num = "2">
<item value = "100"/>
<item value = "200"/>
</int-array>
<int-array name = "2" num = "1">
<item value = "200"/>
</int-array>
</pbundle_as_map>
</carrier_config>
            }

This config is empty by default.

Java documentation for android.telephony.CarrierConfigManager.KEY_REGIONAL_SATELLITE_EARFCN_BUNDLE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to