Advertisement
Sajib_Ahmed

Calculator button

Feb 28th, 2021
901
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
  3.     <corners
  4.        android:radius="14dp"
  5.        />
  6.     <solid
  7.        android:color="#0A0A0A"
  8.        />
  9.     <padding
  10.        android:left="0dp"
  11.        android:top="0dp"
  12.        android:right="0dp"
  13.        android:bottom="0dp"
  14.        />
  15.     <size
  16.        android:width="55dp"
  17.        android:height="59dp"
  18.        />
  19.     <stroke
  20.        android:width="3dp"
  21.        android:color="#33272B"
  22.        />
  23. </shape>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement