diff --git a/res/drawable/splashscreen.png b/res/drawable/splashscreen.png index 6c567e2c4..4018be680 100644 Binary files a/res/drawable/splashscreen.png and b/res/drawable/splashscreen.png differ diff --git a/res/layout/about.xml b/res/layout/about.xml index 5bea75752..2e05b577b 100644 --- a/res/layout/about.xml +++ b/res/layout/about.xml @@ -6,10 +6,22 @@ android:background="@drawable/background" android:gravity="center"> - + + + + android:layout_width="wrap_content" + android:layout_gravity="center_horizontal|bottom" /> diff --git a/res/values/custom.xml b/res/values/custom.xml index 754c82dab..556f22357 100644 --- a/res/values/custom.xml +++ b/res/values/custom.xml @@ -5,7 +5,7 @@ HH:mm linphone-mms-%s.jpg - Linphone 2 + Linphone Linphone Starting up Registered to %s diff --git a/src/org/linphone/LinphoneLauncherActivity.java b/src/org/linphone/LinphoneLauncherActivity.java index b575d1b0d..e3186e17f 100644 --- a/src/org/linphone/LinphoneLauncherActivity.java +++ b/src/org/linphone/LinphoneLauncherActivity.java @@ -73,11 +73,13 @@ public class LinphoneLauncherActivity extends Activity { protected void onServiceReady() { LinphoneService.instance().setActivityToLaunchOnIncomingReceived(LinphoneActivity.class); - startActivity(new Intent() - .setClass(this, LinphoneActivity.class) - .setData(getIntent().getData())); - - finish(); + mHandler.postDelayed(new Runnable() { + @Override + public void run() { + startActivity(new Intent().setClass(LinphoneLauncherActivity.this, LinphoneActivity.class).setData(getIntent().getData())); + finish(); + } + }, 1000); }