TelecomManager.ActionConfigurePhoneAccount Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An android.content.Intent
action sent by the telecom framework to start a
configuration dialog for a registered PhoneAccount
.
[Android.Runtime.Register("ACTION_CONFIGURE_PHONE_ACCOUNT", ApiSince=23)]
public const string ActionConfigurePhoneAccount;
[<Android.Runtime.Register("ACTION_CONFIGURE_PHONE_ACCOUNT", ApiSince=23)>]
val mutable ActionConfigurePhoneAccount : string
Field Value
- Attributes
Remarks
An android.content.Intent
action sent by the telecom framework to start a configuration dialog for a registered PhoneAccount
. There is no default dialog and each app that registers a PhoneAccount
should provide one if desired.
A user can access the list of enabled android.telecom.PhoneAccount
s through the Phone app's settings menu. For each entry, the settings app will add a click action. When triggered, the click-action will start this intent along with the extra #EXTRA_PHONE_ACCOUNT_HANDLE
to indicate the PhoneAccount
to configure. If the PhoneAccount
package does not register an android.app.Activity
for this intent, then it will not be sent.
Java documentation for android.telecom.TelecomManager.ACTION_CONFIGURE_PHONE_ACCOUNT
.
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.