-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
powermenu/src/main/java/com/skydoves/powermenu/kotlin/ViewPowerMenuLazy.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (C) 2017 skydoves | ||
* | ||
* 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. | ||
*/ | ||
|
||
package com.skydoves.powermenu.kotlin | ||
|
||
import android.content.Context | ||
import androidx.activity.ComponentActivity | ||
import com.skydoves.powermenu.PowerMenu | ||
import java.io.Serializable | ||
import kotlin.reflect.KClass | ||
|
||
/** | ||
* An implementation of [Lazy] for creating an instance of the [PowerMenu] lazily in Activities. | ||
* Tied to the given Activity's lifecycleOwner, [factory]. | ||
* | ||
* @param context A context for creating resources of the [PowerMenu] lazily. | ||
* This will prevents memory leak: [Avoid Memory Leak](https://github.com/skydoves/powermenu#avoid-memory-leak). | ||
* @param factory A [PowerMenu.Factory] kotlin class for creating a new instance of the PowerMenu. | ||
*/ | ||
@PublishedApi | ||
internal class ViewPowerMenuLazy<out T : PowerMenu.Factory>( | ||
private val context: Context, | ||
private val factory: KClass<T> | ||
) : Lazy<PowerMenu>, Serializable { | ||
|
||
private var cached: PowerMenu? = null | ||
|
||
override val value: PowerMenu | ||
get() { | ||
var instance = cached | ||
if (instance === null) { | ||
if (context is ComponentActivity) { | ||
val factory = factory::java.get().newInstance() | ||
instance = factory.create(context, context) | ||
cached = instance | ||
} else { | ||
throw IllegalArgumentException( | ||
"PowerMenu can not be initialized. The passed context is not an instance of the ComponentActivity." | ||
) | ||
} | ||
} | ||
|
||
return instance | ||
} | ||
|
||
override fun isInitialized(): Boolean = cached !== null | ||
|
||
override fun toString(): String = if (isInitialized()) value.toString() else "Lazy value not initialized yet." | ||
} |