jelloranger
09/16/2017, 6:37 AMjelloranger
09/16/2017, 6:37 AMSeuan Rahman
03/12/2021, 11:10 AMkenkyee
03/12/2021, 11:18 AMSeuan Rahman
03/12/2021, 11:20 AMSeuan Rahman
03/12/2021, 11:21 AMDominik wuttke
03/12/2021, 12:07 PMpascalchidi
03/12/2021, 7:20 PMMichal Klimczak
03/14/2021, 7:46 AMShivam Sethi
03/14/2021, 8:23 PMRalph Nader
03/14/2021, 9:35 PMRalph Nader
03/14/2021, 10:34 PMDeepak Gahlot
03/15/2021, 5:14 AMval registerTakeFile = registerForActivityResult(
ActivityResultContracts.OpenDocument()
and after updating to implementation "androidx.activityactivity compose1.3.0-alpha04" i'm getting an error
Can only use lower 16 bits for requestCode
(edited)HarryPulvirenti
03/15/2021, 8:14 AMNavigation
in a Multi-Module Android Project with Navigation Components
.
Hope that you like it 😄 https://dev.to/harrypulvirenti/let-s-navigate-538o
If you have any questions I'm happy to discuss here on a thread or with commentspascalchidi
03/15/2021, 5:26 PMLucas Hebinger
03/17/2021, 6:02 PMTony Kazanjian
03/17/2021, 11:16 PMandroidx.mediarouter:mediarouter:1.0.0
. Would an update to 1.2.2 fix it?Dennis Rufi
03/18/2021, 10:04 AMprivate fun timer(
millisInFuture: Long,
countDownInterval: Long
): CountDownTimer? {
countDownTimer = (object : CountDownTimer(millisInFuture, countDownInterval) {
override fun onTick(millisUntilFinished: Long) {
val timeRemaining = timeString(millisUntilFinished)
binding.btnAuctionTimer.visibility = View.VISIBLE
binding.btnAuctionTimer.text = timeRemaining
}
override fun onFinish() {
binding.btnAuctionTimer.visibility = View.INVISIBLE
}
}).start()
return countDownTimer
}
Kevin Janvier Chinabalire
03/18/2021, 7:19 PMJhonata De Oliveira Ávila
03/19/2021, 2:02 AMMarko Novakovic
03/19/2021, 5:02 PMBottomNavigationView
? I want icon to be grey when not selected with red exclamation mark in top right corner and blue with red exclamation mark when selected
currently when it’s not selected it’s grey, it ignored that drawable itself has red exclamation mark built inJorge Andrés Díaz Naranjo
03/19/2021, 10:15 PMGlen
03/22/2021, 2:27 PMGlen
03/22/2021, 2:50 PMLilly
03/24/2021, 4:01 PM255.toByte() // toByte() is not suggested when starting to write it
I'm on latest AS, Canary 11. Might this be a bug? Sorry would fit better in android-studio
channelSaiedmomen
03/24/2021, 7:20 PMDustin Lam
03/24/2021, 7:36 PMKshitij Patil
03/25/2021, 7:57 AM@link
in the docstrings. I’m using {@link package.class#member label}
this format to write the links but they’re not clickable.
Android Studio: Arctic Fox Canary 10
Is this a known issue?Fatih Yalmanbas
03/26/2021, 8:59 AMtherealbluepandabear
03/27/2021, 1:05 AMprogBar.getLayoutParams().width = (DisplayMetrics().heightPixels / quizInstance.questions.size) * ++indx
progBar.getLayoutParams().height = 100
progBar.requestLayout()