Статья про новый View Binding. Объясняется, почему он лучше, чем findViewById и котлиновский View Binding, и дается пара примеров.
#android #view #binding
https://joebirch.co/2019/09/18/exploring-view-binding-on-android/
#android #view #binding
https://joebirch.co/2019/09/18/exploring-view-binding-on-android/
Joe Birch
Exploring View Binding on Android
When it comes to manipulating our user interfaces within Android applications, there are a couple of approaches that we can take. In these cases, we need to obtain a reference these views in-order to manipulate them in some way. For this, we'll either use…
Разбор полезных сочетаний клавиш в Android Studio
#androidstudio
https://medium.com/@arzumanianartur0/develop-android-applications-more-efficiently-6135fd3aa21b
#androidstudio
https://medium.com/@arzumanianartur0/develop-android-applications-more-efficiently-6135fd3aa21b
Medium
Develop Android applications more efficiently. Tools, plugins, shortcuts, tips and tricks. Part 1. Shortcuts.
In these series we gonna talk about how we can cook our applications more efficiently and make them fly like a rocket. First part is…
Курсы по Котлину от Google
#android #kotlin
https://android-developers.googleblog.com/2019/09/new-android-kotlin-codelab-courses-are.html
#android #kotlin
https://android-developers.googleblog.com/2019/09/new-android-kotlin-codelab-courses-are.html
Android Developers Blog
New! Android Kotlin codelab courses are here
Posted by Jocelyn Becker, Senior Program Manager, Google Developer Training Want to learn to build Android apps in Kotlin? Get started w...
Перевод статьи о создании анимации раскрытия кнопки FAB
#android #animation #design
https://medium.com/nuances-of-programming/как-создать-плавающую-кнопку-для-android-приложения-eda90d7c574b
#android #animation #design
https://medium.com/nuances-of-programming/как-создать-плавающую-кнопку-для-android-приложения-eda90d7c574b
Medium
Как создать плавающую кнопку для Android приложения
В этом уроке я покажу как создать анимированную «плавающую кнопку действия» (FAB), которая открывает доступ к опциям по нажатию.
Небольшое исследование, как новый View Binding влияет на скорость сборки. Спойлер: отрицательно влияет, но не сильно.
#android #performance #viewbinding
https://blog.stylingandroid.com/view-binding-performance
#android #performance #viewbinding
https://blog.stylingandroid.com/view-binding-performance
Styling Android
View Binding: Performance
In September 2019 Google released Android Studio 3.6 Canary 11 to the Canary channel. This had an interesting new addition: View Binding. In this short series we'll take a look at how it works, and w
Подборка ссылок по разным Android темам
#android #links
https://medium.com/@daniyalidrees/a-pathway-to-become-an-android-developer-1a2f97cc5e60
#android #links
https://medium.com/@daniyalidrees/a-pathway-to-become-an-android-developer-1a2f97cc5e60
Medium
A Pathway to Become An Android Developer
Pre-requisites:
В Android Q урезали стандартные Location-разрешения. Для получения Location в фоне теперь нужно запрашивать еще одно разрешение ACCESS_BACKGROUND_LOCATION.
#android #permission #location
https://proandroiddev.com/android-q-privacy-changes-for-accessing-device-location-1c8e2197d0e2
#android #permission #location
https://proandroiddev.com/android-q-privacy-changes-for-accessing-device-location-1c8e2197d0e2
Medium
Android 10 privacy changes for accessing location
Android 10 gives users more control over when apps can get access to device location.
Новый UI Toolkit для Android - Jetpack Compose - уже можно опробовать, скачав его с GitHub. В статье рассматривается создание UI для отображения списка.
#android #compose
https://edit.theappbusiness.com/jetpack-compose-a-point-in-time-8c9459f6c58c
#android #compose
https://edit.theappbusiness.com/jetpack-compose-a-point-in-time-8c9459f6c58c
Сборник вопросов (с ответами) для Android интервью
#android #interview
https://itsobes.ru/AndroidSobes/
#android #interview
https://itsobes.ru/AndroidSobes/
Небольшой материал про пропущенные кадры (skipped frames). Иногда в логах мы видим уведомление о них от Choreographer. Но отображается оно, только если было пропущено больше, чем 30 кадров. Т.е. когда был фриз на полсекунды. Это значение можно поменять.
#android #performance
https://www.techyourchance.com/android-application-skips-frames/
#android #performance
https://www.techyourchance.com/android-application-skips-frames/
TechYourChance
Why Android Applications Skip Frames and How to Fix This Issue
In this post I discuss the origins of the warning threshold of 30 skipped frames and show how to change it to a more reasonable number.
Поработать с Jetpack Compose стало проще. Dev версия теперь доступна в Maven репозитории гугла.
#android #compose #layout
https://habr.com/ru/post/471670
#android #compose #layout
https://habr.com/ru/post/471670
Хабр
Пробуем Jetpack Compose в бою?
Наконец, настал момент, когда не нужно собирать самостоятельно Android Studio, чтобы попробовать новый декларативный UI framework для Android. Jetpack Compose ст...
Небольшой материал для новичков с примерами позиционирования в ConstraintLayout:
- center position
- bias
- circular position
#android #layout
https://medium.com/mindorks/design-flexible-layouts-with-constraints-bff68fc22b99
- center position
- bias
- circular position
#android #layout
https://medium.com/mindorks/design-flexible-layouts-with-constraints-bff68fc22b99
Medium
Design Flexible Layouts With Constraints
Constraint means restriction/limitation. ConstraintLayout allows you to create flexible layouts with providing constraints to widgets to…