Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,131 @@
|
||||
package com.google.android.gms.maps;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
import android.os.StrictMode;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import androidx.fragment.app.Fragment;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class SupportStreetViewPanoramaFragment extends Fragment {
|
||||
private final zzaz zza = new zzaz(this);
|
||||
|
||||
public static SupportStreetViewPanoramaFragment newInstance() {
|
||||
return new SupportStreetViewPanoramaFragment();
|
||||
}
|
||||
|
||||
public void getStreetViewPanoramaAsync(OnStreetViewPanoramaReadyCallback onStreetViewPanoramaReadyCallback) {
|
||||
Preconditions.checkMainThread("getStreetViewPanoramaAsync() must be called on the main thread");
|
||||
Preconditions.checkNotNull(onStreetViewPanoramaReadyCallback, "callback must not be null.");
|
||||
this.zza.zzb(onStreetViewPanoramaReadyCallback);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onActivityCreated(Bundle bundle) {
|
||||
ClassLoader classLoader = SupportStreetViewPanoramaFragment.class.getClassLoader();
|
||||
if (bundle != null && classLoader != null) {
|
||||
bundle.setClassLoader(classLoader);
|
||||
}
|
||||
super.onActivityCreated(bundle);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onAttach(Activity activity) {
|
||||
super.onAttach(activity);
|
||||
zzaz.zza(this.zza, activity);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onCreate(Bundle bundle) {
|
||||
super.onCreate(bundle);
|
||||
this.zza.onCreate(bundle);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) {
|
||||
return this.zza.onCreateView(layoutInflater, viewGroup, bundle);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onDestroy() {
|
||||
this.zza.onDestroy();
|
||||
super.onDestroy();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onDestroyView() {
|
||||
this.zza.onDestroyView();
|
||||
super.onDestroyView();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onInflate(Activity activity, AttributeSet attributeSet, Bundle bundle) {
|
||||
StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy();
|
||||
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder(threadPolicy).permitAll().build());
|
||||
try {
|
||||
super.onInflate(activity, attributeSet, bundle);
|
||||
zzaz.zza(this.zza, activity);
|
||||
this.zza.onInflate(activity, new Bundle(), bundle);
|
||||
} finally {
|
||||
StrictMode.setThreadPolicy(threadPolicy);
|
||||
}
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment, android.content.ComponentCallbacks
|
||||
public void onLowMemory() {
|
||||
this.zza.onLowMemory();
|
||||
super.onLowMemory();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onPause() {
|
||||
this.zza.onPause();
|
||||
super.onPause();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
this.zza.onResume();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onSaveInstanceState(Bundle bundle) {
|
||||
ClassLoader classLoader = SupportStreetViewPanoramaFragment.class.getClassLoader();
|
||||
if (bundle != null && classLoader != null) {
|
||||
bundle.setClassLoader(classLoader);
|
||||
}
|
||||
super.onSaveInstanceState(bundle);
|
||||
this.zza.onSaveInstanceState(bundle);
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onStart() {
|
||||
super.onStart();
|
||||
this.zza.onStart();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void onStop() {
|
||||
this.zza.onStop();
|
||||
super.onStop();
|
||||
}
|
||||
|
||||
@Override // androidx.fragment.app.Fragment
|
||||
public void setArguments(Bundle bundle) {
|
||||
super.setArguments(bundle);
|
||||
}
|
||||
|
||||
public static SupportStreetViewPanoramaFragment newInstance(StreetViewPanoramaOptions streetViewPanoramaOptions) {
|
||||
SupportStreetViewPanoramaFragment supportStreetViewPanoramaFragment = new SupportStreetViewPanoramaFragment();
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putParcelable("StreetViewPanoramaOptions", streetViewPanoramaOptions);
|
||||
supportStreetViewPanoramaFragment.setArguments(bundle);
|
||||
return supportStreetViewPanoramaFragment;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user