More cleanup
This commit is contained in:
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 |
|
@ -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>
|
|
7
res/drawable/delete_field.xml
Normal file
7
res/drawable/delete_field.xml
Normal 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>
|
|
@ -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>
|
|
||||||
|
|
|
@ -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>
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/delete_field"
|
android:id="@+id/delete_field"
|
||||||
android:src="@drawable/delete_field_default"
|
android:src="@drawable/delete_field"
|
||||||
android:contentDescription="@string/content_description_add"
|
android:contentDescription="@string/content_description_add"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_width="30dp"
|
android:layout_width="30dp"
|
||||||
|
|
|
@ -1,25 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
|
<style name="Default" parent="android:Theme.Holo.Light"/>
|
||||||
<style name="Default" parent="android:Theme.Holo.Light">
|
<style name="NoTitle" parent="android:Theme.Holo.Light.NoActionBar"/>
|
||||||
<item name="android:fastScrollThumbDrawable">@drawable/fast_scroll</item>
|
<style name="FullScreen" parent="android:Theme.Holo.Light.NoActionBar"/>
|
||||||
<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="font1" parent="@android:style/TextAppearance.Medium">
|
<style name="font1" parent="@android:style/TextAppearance.Medium">
|
||||||
<item name="android:textColor">@color/colorA</item>
|
<item name="android:textColor">@color/colorA</item>
|
||||||
|
|
Loading…
Reference in a new issue