This file contains hidden or 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
| package com.dahham.ora | |
| import android.os.Handler | |
| import android.os.Message | |
| import android.os.SystemClock | |
| abstract class CountDownTimer | |
| /** | |
| * @param millisInFuture The number of millis in the future from the call | |
| * to [.start] until the countdown is done and [.onFinish] |
This file contains hidden or 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
| import java.lang.StringBuilder | |
| import kotlin.random.Random | |
| fun generateRandomColorString(): String { | |
| val numNum = Random.nextInt(1, 6) | |
| val alphaNum = 6 - numNum | |
| val string = StringBuilder() |