ADD week 5
This commit is contained in:
		| @@ -0,0 +1,43 @@ | ||||
| package androidx.lifecycle; | ||||
|  | ||||
| import android.view.View; | ||||
| import androidx.lifecycle.runtime.R; | ||||
| import kotlin.Metadata; | ||||
| import kotlin.jvm.functions.Function1; | ||||
| import kotlin.jvm.internal.Intrinsics; | ||||
| import kotlin.sequences.SequencesKt; | ||||
|  | ||||
| /* compiled from: ViewTreeLifecycleOwner.kt */ | ||||
| @Metadata(d1 = {"\u0000\u0016\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0003\u001a\u0013\u0010\u0000\u001a\u0004\u0018\u00010\u0001*\u00020\u0002H\u0007¢\u0006\u0002\b\u0003\u001a\u001b\u0010\u0004\u001a\u00020\u0005*\u00020\u00022\b\u0010\u0006\u001a\u0004\u0018\u00010\u0001H\u0007¢\u0006\u0002\b\u0007¨\u0006\b"}, d2 = {"findViewTreeLifecycleOwner", "Landroidx/lifecycle/LifecycleOwner;", "Landroid/view/View;", "get", "setViewTreeLifecycleOwner", "", "lifecycleOwner", "set", "lifecycle-runtime_release"}, k = 2, mv = {1, 8, 0}, xi = 48) | ||||
| /* loaded from: classes.dex */ | ||||
| public final class ViewTreeLifecycleOwner { | ||||
|     public static final void set(View view, LifecycleOwner lifecycleOwner) { | ||||
|         Intrinsics.checkNotNullParameter(view, "<this>"); | ||||
|         view.setTag(R.id.view_tree_lifecycle_owner, lifecycleOwner); | ||||
|     } | ||||
|  | ||||
|     public static final LifecycleOwner get(View view) { | ||||
|         Intrinsics.checkNotNullParameter(view, "<this>"); | ||||
|         return (LifecycleOwner) SequencesKt.firstOrNull(SequencesKt.mapNotNull(SequencesKt.generateSequence(view, new Function1<View, View>() { // from class: androidx.lifecycle.ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$1 | ||||
|             @Override // kotlin.jvm.functions.Function1 | ||||
|             public final View invoke(View currentView) { | ||||
|                 Intrinsics.checkNotNullParameter(currentView, "currentView"); | ||||
|                 Object parent = currentView.getParent(); | ||||
|                 if (parent instanceof View) { | ||||
|                     return (View) parent; | ||||
|                 } | ||||
|                 return null; | ||||
|             } | ||||
|         }), new Function1<View, LifecycleOwner>() { // from class: androidx.lifecycle.ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$2 | ||||
|             @Override // kotlin.jvm.functions.Function1 | ||||
|             public final LifecycleOwner invoke(View viewParent) { | ||||
|                 Intrinsics.checkNotNullParameter(viewParent, "viewParent"); | ||||
|                 Object tag = viewParent.getTag(R.id.view_tree_lifecycle_owner); | ||||
|                 if (tag instanceof LifecycleOwner) { | ||||
|                     return (LifecycleOwner) tag; | ||||
|                 } | ||||
|                 return null; | ||||
|             } | ||||
|         })); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user