Last active
December 10, 2019 16:02
-
-
Save lokcito/0d46f9cd9b89dd7635621fd0220f66a7 to your computer and use it in GitHub Desktop.
Android ImageView Circular: Imágenes circulares
This file contains 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
#Library Repository: https://github.com/hdodenhof/CircleImageView | |
#build.gradle (Module:App) | |
dependencies { | |
... | |
implementation 'de.hdodenhof:circleimageview:3.0.1' | |
... | |
} | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<de.hdodenhof.circleimageview.CircleImageView | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:id="@+id/profile_image" | |
android:layout_width="146dp" | |
android:layout_height="96dp" | |
android:src="@drawable/fbx" app:civ_border_width="2dp" | |
app:civ_border_color="#FF000000"/> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment