2013-11-06 Miguel de Dios <miguel.dedios@artica.es>
* res/drawable-ldpi/delete_pressed.png, res/drawable-ldpi/save_pressed.png, res/layout/main.xml, res/drawable/save_icon_button.xml, res/drawable/delete_icon_button.xml: changes in the themes. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9023 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
37d000f760
commit
6743cb2ef9
|
@ -1,3 +1,10 @@
|
|||
2013-11-06 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* res/drawable-ldpi/delete_pressed.png,
|
||||
res/drawable-ldpi/save_pressed.png, res/layout/main.xml,
|
||||
res/drawable/save_icon_button.xml,
|
||||
res/drawable/delete_icon_button.xml: changes in the themes.
|
||||
|
||||
2013-11-06 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* res/layout/main.xml, res/drawable/combobox_pressed.9.png: changes
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 930 B |
Binary file not shown.
After Width: | Height: | Size: 799 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@drawable/delete"
|
||||
android:state_enabled="false"/>
|
||||
<item android:drawable="@drawable/delete_pressed"
|
||||
android:state_enabled="true" android:state_pressed="true"/>
|
||||
<item android:drawable="@drawable/delete_pressed"
|
||||
android:state_enabled="true" android:state_focused="true"/>
|
||||
<item android:drawable="@drawable/delete"
|
||||
android:state_enabled="true"/>
|
||||
|
||||
</selector>
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@drawable/save"
|
||||
android:state_enabled="false"/>
|
||||
<item android:drawable="@drawable/save_pressed"
|
||||
android:state_enabled="true" android:state_pressed="true"/>
|
||||
<item android:drawable="@drawable/save_pressed"
|
||||
android:state_enabled="true" android:state_focused="true"/>
|
||||
<item android:drawable="@drawable/save"
|
||||
android:state_enabled="true"/>
|
||||
|
||||
</selector>
|
|
@ -101,8 +101,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_weight="0"
|
||||
android:padding="0dp"
|
||||
android:src="@drawable/delete"
|
||||
android:background="@null" />
|
||||
android:background="@drawable/delete_icon_button" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/button_save_profile"
|
||||
|
@ -110,8 +109,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_weight="0"
|
||||
android:padding="0dp"
|
||||
android:src="@drawable/save"
|
||||
android:background="@null" />
|
||||
android:background="@drawable/save_icon_button" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
|
|
Loading…
Reference in New Issue