Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <RelativeLayout
  2. android:layout_width="110dp"
  3. android:layout_height="110dp">
  4.  
  5. <ImageView
  6. android:id="@+id/image1"
  7. android:layout_width="110dp"
  8. android:layout_height="110dp"
  9. android:foreground="@drawable/frame"
  10. android:contentDescription="image"/>
  11.  
  12. <de.hdodenhof.circleimageview.CircleImageView
  13. android:id="@+id/image2"
  14. android:layout_width="44dp"
  15. android:layout_height="44dp"
  16. android:layout_alignBottom="@id/branch_image"
  17. android:padding="1dp" />
  18.  
  19. </RelativeLayout>
  20.  
  21. <?xml version="1.0" encoding="utf-8"?>
  22. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  23. <stroke android:width="3dp" android:color="@color/colorWhite" />
  24. <padding android:left="5dp" android:top="5dp" android:right="5dp" android:bottom="5dp" />
  25. <corners android:topLeftRadius="0dp" android:topRightRadius="0dp" android:bottomLeftRadius="20dp" android:bottomRightRadius="0dp"/>
  26. </shape>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement