1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

[Add] Docs Android: BottonSheed & ImageView (#6686)

* [Add] Docs Android: BottonSheed & ImageView

* [Add] Docs Android: Update doc ImageView

* Update src/data/roadmaps/android/content/imageview@A4rtNULX_MoV93IH1Lgqw.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Brian Rodriguez
2024-08-22 03:44:07 -05:00
committed by GitHub
parent 285dd28ae7
commit 82e4e18b4d
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# BottomSheet
`Bottom sheets` are surfaces containing supplementary content that are anchored to the bottom of the screen.
There are several attributes that can be used to adjust the behavior of both standard and modal bottom sheets.
Behavior attributes can be applied to standard bottom sheets in xml by setting them on a child View set to `app:layout_behavior` or programmatically.
Visit the following resources to learn more:
- [@article@Android developers: Bottom sheets](https://developer.android.com/reference/com/google/android/material/bottomsheet/BottomSheetDialog)

View File

@@ -0,0 +1,7 @@
# ImageView
Displays image resources, for example Bitmap or Drawable resources. ImageView is also commonly used to apply tints to an image and handle image scaling.
Visit the following resources to learn more:
- [@article@Android developers: ImageView](https://developer.android.com/reference/android/widget/ImageView)