From b2a798e22924b73b0f88718cf5b8e5b9f1b9e334 Mon Sep 17 00:00:00 2001 From: Brian Rodriguez Date: Wed, 28 Aug 2024 03:37:51 -0500 Subject: [PATCH] [Docs] Android roadmap: Animations & Constraints (#6853) * [Docs] Android roadmap: Animations & Constraints * Update src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md --------- Co-authored-by: dsh --- .../android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md | 8 ++++++++ .../android/content/constraint@3fFNMhQIuuh-NRzSXYpXO.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md b/src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md index e69de29bb..1a34fef94 100644 --- a/src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md +++ b/src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md @@ -0,0 +1,8 @@ +# Animations + +`Animations` can add visual cues that notify users about what's going on in your app. They are especially useful when the UI changes state, such as when new content loads or new actions become available. Animations also add a polished look to your app, which gives it a higher quality look and feel. + +Visit the following resources to learn more: + +- [@official@Google developers: Animations](https://developer.android.com/develop/ui/views/animations/overview) +- [@video@Google developers: Animations](https://www.youtube.com/watch?v=N_x7SV3I3P0) diff --git a/src/data/roadmaps/android/content/constraint@3fFNMhQIuuh-NRzSXYpXO.md b/src/data/roadmaps/android/content/constraint@3fFNMhQIuuh-NRzSXYpXO.md index e69de29bb..dbf4c9fc6 100644 --- a/src/data/roadmaps/android/content/constraint@3fFNMhQIuuh-NRzSXYpXO.md +++ b/src/data/roadmaps/android/content/constraint@3fFNMhQIuuh-NRzSXYpXO.md @@ -0,0 +1,8 @@ +# ConstraintLayout + +Lets you create large, complex layouts with a flat view hierarchy—no nested view groups. It's similar to `RelativeLayout` in that all views are laid out according to relationships between sibling views and the parent layout, but it's more flexible than RelativeLayout and easier to use. Its available on xml and jetpack compose. + +Visit the following resources to learn more: + +- [@official@Android developers: ConstraintLayout in xml](https://developer.android.com/develop/ui/views/layout/constraint-layout) +- [@official@Android developers: ContraintLayout in compose](https://developer.android.com/develop/ui/compose/layouts/constraintlayout)