Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
package com.google.android.gms.maps;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.Fragment;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.common.GooglePlayServicesNotAvailableException;
|
||||
import com.google.android.gms.dynamic.DeferredLifecycleHelper;
|
||||
import com.google.android.gms.dynamic.ObjectWrapper;
|
||||
import com.google.android.gms.dynamic.OnDelegateCreatedListener;
|
||||
import com.google.android.gms.maps.internal.IMapFragmentDelegate;
|
||||
import com.google.android.gms.maps.internal.zzcc;
|
||||
import com.google.android.gms.maps.model.RuntimeRemoteException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzaf extends DeferredLifecycleHelper {
|
||||
protected OnDelegateCreatedListener zza;
|
||||
private final Fragment zzb;
|
||||
private Activity zzc;
|
||||
private final List zzd = new ArrayList();
|
||||
|
||||
zzaf(Fragment fragment) {
|
||||
this.zzb = fragment;
|
||||
}
|
||||
|
||||
static /* synthetic */ void zza(zzaf zzafVar, Activity activity) {
|
||||
zzafVar.zzc = activity;
|
||||
zzafVar.zzc();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.dynamic.DeferredLifecycleHelper
|
||||
protected final void createDelegate(OnDelegateCreatedListener onDelegateCreatedListener) {
|
||||
this.zza = onDelegateCreatedListener;
|
||||
zzc();
|
||||
}
|
||||
|
||||
public final void zzb(OnMapReadyCallback onMapReadyCallback) {
|
||||
if (getDelegate() != null) {
|
||||
((zzae) getDelegate()).getMapAsync(onMapReadyCallback);
|
||||
} else {
|
||||
this.zzd.add(onMapReadyCallback);
|
||||
}
|
||||
}
|
||||
|
||||
public final void zzc() {
|
||||
if (this.zzc == null || this.zza == null || getDelegate() != null) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
MapsInitializer.initialize(this.zzc);
|
||||
IMapFragmentDelegate iMapFragmentDelegateZzf = zzcc.zza(this.zzc, null).zzf(ObjectWrapper.wrap(this.zzc));
|
||||
if (iMapFragmentDelegateZzf == null) {
|
||||
return;
|
||||
}
|
||||
this.zza.onDelegateCreated(new zzae(this.zzb, iMapFragmentDelegateZzf));
|
||||
Iterator it = this.zzd.iterator();
|
||||
while (it.hasNext()) {
|
||||
((zzae) getDelegate()).getMapAsync((OnMapReadyCallback) it.next());
|
||||
}
|
||||
this.zzd.clear();
|
||||
} catch (RemoteException e) {
|
||||
throw new RuntimeRemoteException(e);
|
||||
} catch (GooglePlayServicesNotAvailableException unused) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user