Android examples for Account:Account Information
get Default Emergency Phone Account
/*// w ww . j a va 2 s .c om * Copyright 2014, The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import android.content.ComponentName; import android.telecom.PhoneAccount; import android.telecom.PhoneAccountHandle; public class Main { private static final String TELEPHONY_PACKAGE_NAME = "com.android.phone"; private static final String PSTN_CALL_SERVICE_CLASS_NAME = "com.android.services.telephony.TelephonyConnectionService"; private static final PhoneAccountHandle DEFAULT_EMERGENCY_PHONE_ACCOUNT_HANDLE = new PhoneAccountHandle( new ComponentName(TELEPHONY_PACKAGE_NAME, PSTN_CALL_SERVICE_CLASS_NAME), "E"); /** * @return fallback {@link PhoneAccount} to be used by Telecom for emergency * calls in the rare case that Telephony has not registered any phone * accounts yet. Details about this account are not expected to be * displayed in the UI, so the description, etc are not populated. */ static PhoneAccount getDefaultEmergencyPhoneAccount() { return PhoneAccount .builder(DEFAULT_EMERGENCY_PHONE_ACCOUNT_HANDLE, "E") .setCapabilities( PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION | PhoneAccount.CAPABILITY_CALL_PROVIDER | PhoneAccount.CAPABILITY_PLACE_EMERGENCY_CALLS).build(); } }