Merge remote-tracking branch 'newui/newUI' into newUI
Conflicts: AndroidManifest.xml build.xml src/org/linphone/DialerActivity.java src/org/linphone/IncallActivity.java src/org/linphone/LinphoneManager.java src/org/linphone/LinphoneService.java src/org/linphone/LinphoneSimpleListener.java src/org/linphone/LinphoneUtils.java src/org/linphone/VideoCallActivity.java src/org/linphone/core/LinphoneCallImpl.java src/org/linphone/core/LinphoneCoreImpl.java
|
@ -9,5 +9,6 @@
|
|||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry exported="true" kind="lib" path="libs/aXMLRPC.jar"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry kind="lib" path="libs/android-support-v4.jar"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.linphone"
|
||||
android:versionCode="1320" android:versionName="1.3.2" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="4"/>
|
||||
android:versionCode="2000" android:versionName="2.0" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15"/>
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
||||
|
@ -27,6 +27,7 @@
|
|||
|
||||
<activity android:name="org.linphone.LinphoneLauncherActivity"
|
||||
android:label="@string/app_name"
|
||||
android:windowSoftInputMode="adjustPan"
|
||||
android:theme="@android:style/Theme.NoTitleBar">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
@ -44,7 +45,7 @@
|
|||
<intent-filter>
|
||||
<action android:name="android.intent.action.SENDTO" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:scheme="sip" /><!-- maybe one day -->
|
||||
<data android:scheme="sip" />
|
||||
<data android:scheme="imto" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
@ -52,11 +53,10 @@
|
|||
|
||||
|
||||
<activity android:name="org.linphone.LinphoneActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:launchMode="singleTask"
|
||||
> <!-- android:alwaysRetainTaskState="true" clearTaskOnLaunch="false"-->
|
||||
|
||||
android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait"
|
||||
android:launchMode="singleTask">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
|
@ -65,154 +65,65 @@
|
|||
|
||||
<activity android:name="org.linphone.IncomingCallActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:launchMode="singleInstance">
|
||||
android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="org.linphone.UriPickerActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.UriPickerActivity$DialerActivity" android:theme="@android:style/Theme.NoTitleBar">
|
||||
<activity android:name="org.linphone.FirstLoginActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="org.linphone.FirstLoginActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- android:launchMode="singleTask"-->
|
||||
<activity android:name="org.linphone.IncallActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="keyboardHidden|orientation">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.ConferenceDetailsActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.LinphonePreferencesSIPAccountActivity"></activity>
|
||||
<activity android:name="org.linphone.LinphonePreferencesActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.DialerActivity"
|
||||
android:configChanges="keyboardHidden|orientation">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.VideoCallActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:launchMode="singleInstance"
|
||||
android:configChanges="orientation">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="ContactPickerActivityNew" android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="ContactPickerActivityOld" android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.HistoryActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.AboutActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
|
||||
|
||||
<service android:name="org.linphone.LinphoneService" />
|
||||
<activity android:name="org.linphone.InCallActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<receiver android:name="org.linphone.NetworkManager">
|
||||
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
|
||||
</receiver>
|
||||
|
||||
<activity android:name=".AccountPreferencesActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
</activity>
|
||||
<activity android:name=".PreferencesActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</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>
|
||||
|
||||
<receiver android:name="org.linphone.BootReceiver">
|
||||
<intent-filter><action android:name="android.intent.action.BOOT_COMPLETED"></action></intent-filter>
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="org.linphone.PhoneStateChangedReceiver">
|
||||
<intent-filter><action android:name="android.intent.action.PHONE_STATE" /></intent-filter>
|
||||
</receiver>
|
||||
<service android:name="org.linphone.LinphoneService" />
|
||||
|
||||
<receiver android:name="org.linphone.NetworkManager">
|
||||
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="org.linphone.BootReceiver">
|
||||
<intent-filter><action android:name="android.intent.action.BOOT_COMPLETED"></action></intent-filter>
|
||||
</receiver>
|
||||
|
||||
<activity android:name="org.linphone.TestConferenceActivity"
|
||||
android:label="Conf test"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="org.linphone.core.tutorials.TutorialHelloWorldActivity"
|
||||
android:label="Hello World"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.core.tutorials.TutorialRegistrationActivity"
|
||||
android:label="Registration"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.core.tutorials.TutorialBuddyStatusActivity"
|
||||
android:label="Buddy status"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.linphone.core.tutorials.TutorialChatRoomActivity"
|
||||
android:label="Chat Room"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.mediastreamer2.test.Ring"
|
||||
android:label="Ring+Echo"
|
||||
android:enabled="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
<receiver android:name="org.linphone.PhoneStateChangedReceiver">
|
||||
<intent-filter><action android:name="android.intent.action.PHONE_STATE" /></intent-filter>
|
||||
</receiver>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
|
|
@ -1189,7 +1189,7 @@
|
|||
<!-- This runs -package-release and -release-nosign first and then runs
|
||||
only if release-sign is true (set in -release-check,
|
||||
called by -release-no-sign)-->
|
||||
<target name="release"
|
||||
<target name="release"
|
||||
depends="clean, init, -set-release-mode, -release-obfuscation-check, -package, -post-package, -release-prompt-for-password, -release-nosign, -release-sign, -post-build, delete-temp"
|
||||
description="Builds the application in release mode.">
|
||||
</target>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system use,
|
||||
# "build.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-13
|
BIN
libs/android-support-v4.jar
Normal file
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_in_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="-100%" android:toYDelta="0%"
|
||||
android:duration="350"/>
|
||||
</set>
|
8
res/anim/slide_out_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="00%" android:toYDelta="-100%"
|
||||
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>
|
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
BIN
res/drawable/.DS_Store
vendored
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_default" />
|
||||
</selector>
|
BIN
res/drawable/add_call_default.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 |
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_disabled" />
|
||||
<item
|
||||
android:drawable="@drawable/add_contact_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/add_contact_default.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
res/drawable/add_contact_disabled.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 |
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_selected" />
|
||||
<item android:state_enabled="false"
|
||||
android:drawable="@drawable/all_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/all_default.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
res/drawable/all_selected.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
res/drawable/background.png
Normal file
After Width: | Height: | Size: 4.3 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_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/backspace_default.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 |
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_default" />
|
||||
</selector>
|
BIN
res/drawable/button_background_default.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 |
8
res/drawable/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_pressed="true"
|
||||
android:drawable="@drawable/call_over" />
|
||||
<item
|
||||
android:drawable="@drawable/call_default" />
|
||||
</selector>
|
||||
|
7
res/drawable/call_answer.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_default.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
res/drawable/call_over.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
res/drawable/call_quality_indicator_0.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
res/drawable/call_quality_indicator_1.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
res/drawable/call_quality_indicator_2.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
res/drawable/call_quality_indicator_3.png
Normal file
After Width: | Height: | Size: 1.9 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 |
BIN
res/drawable/call_status_incoming.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
res/drawable/call_status_missed.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
res/drawable/call_status_outgoing.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: 4.5 KiB |
BIN
res/drawable/cancel_white_bg_disabled.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
res/drawable/cancel_white_bg_over.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
res/drawable/cell_background.png
Normal file
After Width: | Height: | Size: 1.5 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_selected" />
|
||||
<item
|
||||
android:drawable="@drawable/chat_default" />
|
||||
</selector>
|
BIN
res/drawable/chat_bubble_incoming.9.png
Normal file
After Width: | Height: | Size: 955 B |
BIN
res/drawable/chat_bubble_outgoing.9.png
Normal file
After Width: | Height: | Size: 913 B |
BIN
res/drawable/chat_default.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
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_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/chat_edit_default.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: 4.3 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_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/chat_new_default.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_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/chat_ok_default.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_selected.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_default" />
|
||||
</selector>
|
||||
|
BIN
res/drawable/chat_send_message_default.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 |
|
@ -1,17 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_window_focused="false" android:state_enabled="true"
|
||||
android:drawable="@drawable/clavier_bg_grey" />
|
||||
<item android:state_window_focused="false" android:state_enabled="false"
|
||||
android:drawable="@drawable/clavier_bg_darkgrey" />
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/clavier_bg_orange" />
|
||||
<item android:state_focused="true" android:state_enabled="true"
|
||||
android:drawable="@drawable/clavier_bg_orange" />
|
||||
<item android:state_enabled="true"
|
||||
android:drawable="@drawable/clavier_bg_grey" />
|
||||
<item android:state_focused="true"
|
||||
android:drawable="@drawable/clavier_bg_grey" />
|
||||
<item
|
||||
android:drawable="@drawable/clavier_bg_darkgrey" />
|
||||
</selector>
|
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 4 KiB |
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<padding android:left="7dp"
|
||||
android:top="7dp"
|
||||
android:right="7dp"
|
||||
android:bottom="7dp" />
|
||||
|
||||
<solid android:color="@color/conf_active_bg_color"/>
|
||||
<corners android:radius="15dp" />
|
||||
</shape>
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#777777"/>
|
||||
<corners android:radius="15dp"/>
|
||||
</shape>
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<padding android:left="7dp"
|
||||
android:top="7dp"
|
||||
android:right="7dp"
|
||||
android:bottom="7dp" />
|
||||
|
||||
<solid android:color="#336600"/>
|
||||
<corners android:radius="15dp" />
|
||||
</shape>
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<padding android:left="7dp"
|
||||
android:top="7dp"
|
||||
android:right="7dp"
|
||||
android:bottom="7dp" />
|
||||
|
||||
<solid android:color="#444444"/>
|
||||
<corners android:radius="15dp" />
|
||||
</shape>
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#2E64FE"/>
|
||||
<corners android:radius="15dp"/>
|
||||
<padding android:left="7dp"
|
||||
android:top="7dp"
|
||||
android:right="7dp"
|
||||
android:bottom="7dp" />
|
||||
|
||||
</shape>
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#ff9200"/>
|
||||
<corners android:radius="15dp"/>
|
||||
</shape>
|
||||
|
|
@ -1,7 +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/conf_callee_pressed_bg" />
|
||||
<item android:drawable="@drawable/conf_callee_active_bg" />
|
||||
</selector>
|
||||
|