Some issues fixed + chat notification + account assistant started
|
@ -101,6 +101,14 @@
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
<activity android:name=".setup.SetupActivity"
|
||||||
|
android:theme="@android:style/Theme.NoTitleBar"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
<service android:name="org.linphone.LinphoneService" />
|
<service android:name="org.linphone.LinphoneService" />
|
||||||
|
|
||||||
|
|
8
res/anim/slide_in_bottom_to_top.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="0%" android:toXDelta="0%"
|
||||||
|
android:fromYDelta="100%" android:toYDelta="0%"
|
||||||
|
android:duration="350"/>
|
||||||
|
</set>
|
8
res/anim/slide_in_left_to_right.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="-100%" android:toXDelta="0%"
|
||||||
|
android:fromYDelta="0%" android:toYDelta="0%"
|
||||||
|
android:duration="350"/>
|
||||||
|
</set>
|
8
res/anim/slide_in_right_to_left.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="100%" android:toXDelta="0%"
|
||||||
|
android:fromYDelta="0%" android:toYDelta="0%"
|
||||||
|
android:duration="350"/>
|
||||||
|
</set>
|
8
res/anim/slide_out_left_to_right.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="0%" android:toXDelta="100%"
|
||||||
|
android:fromYDelta="0%" android:toYDelta="0%"
|
||||||
|
android:duration="350" />
|
||||||
|
</set>
|
8
res/anim/slide_out_right_to_left.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="0%" android:toXDelta="-100%"
|
||||||
|
android:fromYDelta="0%" android:toYDelta="0%"
|
||||||
|
android:duration="350" />
|
||||||
|
</set>
|
8
res/anim/slide_out_top_to_bottom.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shareInterpolator="false">
|
||||||
|
<translate
|
||||||
|
android:fromXDelta="0%" android:toXDelta="0%"
|
||||||
|
android:fromYDelta="0%" android:toYDelta="100%"
|
||||||
|
android:duration="350"/>
|
||||||
|
</set>
|
7
res/drawable/add_call.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/add_call_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/add_call_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/add_call_actif.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
res/drawable/add_call_more_default.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
res/drawable/add_call_more_disable.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
res/drawable/add_call_more_over.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
res/drawable/add_call_over.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
res/drawable/add_call_page_contact.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
10
res/drawable/add_contact.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?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/add_contact_over" />
|
||||||
|
<item android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/add_contact_inactif" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/add_contact_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/add_contact_actif.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
res/drawable/add_contact_inactif.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/add_contact_over.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
res/drawable/all_actif.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
8
res/drawable/all_call.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/all_call_selectionne" />
|
||||||
|
<item android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/all_call_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/all_call_actif.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
res/drawable/all_call_selectionne.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
8
res/drawable/all_contacts.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/all_selectionne" />
|
||||||
|
<item android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/all_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/all_selectionne.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
8
res/drawable/appeler.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/appeler_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/appeler_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/appeler_actif.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
res/drawable/appeler_over.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
8
res/drawable/backspace.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/backspace_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/backspace_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/backspace_actif.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
res/drawable/backspace_over.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
res/drawable/barre_noire_top.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
7
res/drawable/button.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/button_background_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/button_background_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/button_background_actif.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
res/drawable/button_background_over.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
7
res/drawable/call.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/call_answer_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/call_answer_default" />
|
||||||
|
</selector>
|
BIN
res/drawable/call_answer_default.png
Normal file
After Width: | Height: | Size: 8.5 KiB |
BIN
res/drawable/call_answer_over.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
res/drawable/call_refused_icon.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
res/drawable/call_refused_icon_over.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
9
res/drawable/cancel.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/cancel_white_bg_over" />
|
||||||
|
<item android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/cancel_white_bg_disabled" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/cancel_white_bg_default" />
|
||||||
|
</selector>
|
BIN
res/drawable/cancel_white_bg_default.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/cancel_white_bg_disabled.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
res/drawable/cancel_white_bg_over.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/cell_background.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/champ_saisie_numero.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
9
res/drawable/chat.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/chat_over" />
|
||||||
|
<item android:state_selected="true"
|
||||||
|
android:drawable="@drawable/chat_selectionne" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/chat_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/chat_actif.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/chat_bubble_incoming.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
res/drawable/chat_bubble_outgoing.9.png
Normal file
After Width: | Height: | Size: 989 B |
8
res/drawable/chat_edit.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/chat_edit_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/chat_edit_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/chat_edit_actif.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
res/drawable/chat_edit_over.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/chat_icon_default.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable/chat_icon_over.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable/chat_message_background.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
8
res/drawable/chat_new.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/chat_new_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/chat_new_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/chat_new_actif.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
res/drawable/chat_new_over.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
8
res/drawable/chat_ok.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/chat_ok_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/chat_ok_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/chat_ok_actif.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/chat_ok_over.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
res/drawable/chat_over.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
res/drawable/chat_selectionne.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
8
res/drawable/chat_send_message.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/chat_send_message_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/chat_send_message_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/chat_send_message_actif.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/chat_send_message_over.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
res/drawable/connected_led.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
9
res/drawable/contacts.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/contacts_over" />
|
||||||
|
<item android:state_selected="true"
|
||||||
|
android:drawable="@drawable/contacts_selectionne" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/contacts_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/contacts_actif.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/contacts_over.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/contacts_selectionne.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
7
res/drawable/delete.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_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/delete_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/delete_actif.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/delete_over.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
7
res/drawable/detail.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/detail_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/detail_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/detail_actif.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
res/drawable/detail_over.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
9
res/drawable/dialer.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/dialer_over" />
|
||||||
|
<item android:state_selected="true"
|
||||||
|
android:drawable="@drawable/dialer_selectionne" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/dialer_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/dialer_actif.png
Normal file
After Width: | Height: | Size: 16 KiB |
8
res/drawable/dialer_alt.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/dialer_alt_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/dialer_alt_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/dialer_alt_actif.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
res/drawable/dialer_alt_over.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
res/drawable/dialer_over.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/dialer_selectionne.png
Normal file
After Width: | Height: | Size: 20 KiB |
8
res/drawable/edit.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?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/edit_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/edit_actif" />
|
||||||
|
</selector>
|
||||||
|
|
BIN
res/drawable/edit_actif.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
res/drawable/edit_over.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
9
res/drawable/history.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/history_over" />
|
||||||
|
<item android:state_selected="true"
|
||||||
|
android:drawable="@drawable/history_selectionne" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/history_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/history_actif.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/history_over.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
res/drawable/history_selectionne.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/incall_contact_actif.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
res/drawable/incall_contact_over.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
9
res/drawable/incall_contacts.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?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/incall_contact_over" />
|
||||||
|
<item android:state_selected="true"
|
||||||
|
android:drawable="@drawable/incall_contact_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/incall_contact_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/incoming_call.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
res/drawable/linphone_actif.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
7
res/drawable/linphone_contacts.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_enabled="true"
|
||||||
|
android:drawable="@drawable/linphone_selectionne" />
|
||||||
|
<item android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/linphone_actif" />
|
||||||
|
</selector>
|
BIN
res/drawable/linphone_selectionne.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
res/drawable/maybe_secure.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
7
res/drawable/micro_off.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/micro_off_over" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/micro_off_actif" />
|
||||||
|
</selector>
|