本文整理匯總了Java中android.telephony.ServiceState.newFromBundle方法的典型用法代碼示例。如果您正苦於以下問題:Java ServiceState.newFromBundle方法的具體用法?Java ServiceState.newFromBundle怎麽用?Java ServiceState.newFromBundle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.telephony.ServiceState
的用法示例。
在下文中一共展示了ServiceState.newFromBundle方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onReceive
import android.telephony.ServiceState; //導入方法依賴的package包/類
@Override
public void onReceive(Context context, Intent intent) {
if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(intent.getAction())) {
if (LOCAL_LOGV) {
Log.v(TAG, "Service state changed: " + intent.getExtras());
}
ServiceState state = ServiceState.newFromBundle(intent.getExtras());
boolean isRoaming = state.getRoaming();
if (LOCAL_LOGV) {
Log.v(TAG, "roaming ------> " + isRoaming);
}
synchronized (sInstance) {
mAutoDownload = getAutoDownloadState(mPreferences, isRoaming);
if (LOCAL_LOGV) {
Log.v(TAG, "mAutoDownload ------> " + mAutoDownload);
}
}
}
}
示例2: handleServiceStateChanged
import android.telephony.ServiceState; //導入方法依賴的package包/類
private void handleServiceStateChanged(Intent intent) {
// If service just returned, start sending out the queued messages
ServiceState serviceState = ServiceState.newFromBundle(intent.getExtras());
int subscription = intent.getIntExtra(SUBSCRIPTION_KEY, 0);
int prefSubscription = MSimSmsManager.getDefault().getPreferredSmsSubscription();
// if service state is IN_SERVICE & current subscription is same as
// preferred SMS subscription.i.e.as set under MultiSIM Settings,then
// sendFirstQueuedMessage.
if (serviceState.getState() == ServiceState.STATE_IN_SERVICE &&
subscription == prefSubscription) {
sendFirstQueuedMessage();
}
}
示例3: handleServiceStateChanged
import android.telephony.ServiceState; //導入方法依賴的package包/類
private void handleServiceStateChanged(Intent intent) {
// If service just returned, start sending out the queued messages
ServiceState serviceState = ServiceState.newFromBundle(intent.getExtras());
if (serviceState.getState() == ServiceState.STATE_IN_SERVICE) {
sendFirstQueuedMessage();
}
}