mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
add a black background to the pin icons
This commit is contained in:
parent
4992bec80b
commit
68a090a522
3 changed files with 12 additions and 1 deletions
9
app/src/main/res/drawable/circle_black_background.xml
Normal file
9
app/src/main/res/drawable/circle_black_background.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid
|
||||
android:color="@color/circle_black_background"/>
|
||||
|
||||
</shape>
|
|
@ -31,7 +31,8 @@
|
|||
android:layout_alignParentStart="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_margin="@dimen/small_margin"
|
||||
android:padding="@dimen/tiny_margin"
|
||||
android:background="@drawable/circle_black_background"
|
||||
android:padding="@dimen/small_margin"
|
||||
android:src="@drawable/ic_pin"/>
|
||||
|
||||
<ImageView
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<resources>
|
||||
<color name="actionbar_menu_icon">#454545</color>
|
||||
<color name="crop_image_view_background">#BB000000</color>
|
||||
<color name="circle_black_background">#66000000</color>
|
||||
|
||||
<!-- Default colors -->
|
||||
<color name="default_text_color">@color/default_dark_theme_text_color</color>
|
||||
|
|
Loading…
Reference in a new issue