Last active
November 17, 2019 16:16
-
-
Save john-lorrenz/dedc2df1a8ddb0e91821964611085e8f to your computer and use it in GitHub Desktop.
imageview - rounder corner
This file contains hidden or 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
<androidx.cardview.widget.CardView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
app:cardCornerRadius="20dp" | |
android:layout_gravity="center" | |
app:cardElevation="50dp"> | |
<ImageView | |
android:id="@+id/imageView" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"/> | |
</androidx.cardview.widget.CardView> | |
<de.hdodenhof.circleimageview.CircleImageView | |
android:id="@+id/profileImage" | |
android:layout_width="100dp" | |
android:layout_height="100dp" | |
android:layout_gravity="center" | |
android:src="@drawable/filipina" | |
tools:src="@drawable/filipina"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment