More cleanup

This commit is contained in:
Sylvain Berfini 2018-10-25 10:18:27 +02:00
parent db7ad65a3a
commit 28d0308427
9 changed files with 11 additions and 41 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 605 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="@color/colorA"/>
<size android:width="120dp" android:height="120dp"/>
</shape>

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/delete_field_over" />
<item
android:drawable="@drawable/delete_field_default" />
</selector>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/fast_scroll_over" />
<item android:drawable="@drawable/fast_scroll_default" />
</selector>

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<size android:width="70dp" android:height="70dp"/>
<solid android:color="@color/colorA" />
</shape>
</item>
</layer-list>

View file

@ -19,7 +19,7 @@
<ImageView
android:id="@+id/delete_field"
android:src="@drawable/delete_field_default"
android:src="@drawable/delete_field"
android:contentDescription="@string/content_description_add"
android:layout_gravity="center"
android:layout_width="30dp"

View file

@ -1,25 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Default" parent="android:Theme.Holo.Light">
<item name="android:fastScrollThumbDrawable">@drawable/fast_scroll</item>
<item name="android:fastScrollTextColor">@android:color/white</item>
<item name="android:fastScrollPreviewBackgroundRight">@drawable/fast_scroll_preview</item>
</style>
<style name="NoTitle" parent="android:Theme.Holo.Light.NoActionBar">
<item name="android:fastScrollThumbDrawable">@drawable/fast_scroll</item>
<item name="android:fastScrollTextColor">@android:color/white</item>
<item name="android:fastScrollPreviewBackgroundRight">@drawable/fast_scroll_preview</item>
</style>
<style name="FullScreen" parent="android:Theme.Holo.Light.NoActionBar">
<item name="android:fastScrollThumbDrawable">@drawable/fast_scroll</item>
<item name="android:fastScrollTextColor">@android:color/white</item>
<item name="android:fastScrollPreviewBackgroundRight">@drawable/fast_scroll_preview</item>
</style>
<style name="Default" parent="android:Theme.Holo.Light"/>
<style name="NoTitle" parent="android:Theme.Holo.Light.NoActionBar"/>
<style name="FullScreen" parent="android:Theme.Holo.Light.NoActionBar"/>
<style name="font1" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">@color/colorA</item>