Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <ImageButton
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:id="@+id/plusOneButton"
  5. android:layout_marginBottom="5dp"
  6. android:src="@drawable/thinking"
  7. android:layout_marginLeft="8dp"
  8. android:layout_marginRight="8dp"
  9. android:background="@drawable/button_border"
  10. />
  11.  
  12. <?xml version="1.0" encoding="utf-8"?>
  13. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  14. >
  15. <stroke
  16. android:width="30dp"
  17. android:color="#ff000000" />
  18. <padding
  19. android:left="1dp"
  20. android:top="1dp"
  21. android:right="1dp"
  22. android:bottom="1dp" />
  23.  
  24. </shape>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement