Some UI improvements

This commit is contained in:
Sylvain Berfini 2019-03-19 14:17:06 +01:00
parent cca253e1fa
commit 5627bcf81b
4 changed files with 10 additions and 5 deletions

View file

@ -690,8 +690,7 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
mCore.addListener(this); mCore.addListener(this);
if (isPush) { if (isPush) {
Log.w( Log.w(
"[Manager] We are here because of a received push notification, force network reachability and enter background mode before starting the Core"); "[Manager] We are here because of a received push notification, enter background mode before starting the Core");
mCore.setNetworkReachable(true);
mCore.enterBackground(); mCore.enterBackground();
} }
mCore.start(); mCore.start();

View file

@ -93,7 +93,7 @@
<TextView <TextView
android:id="@+id/about_text" android:id="@+id/about_text"
style="@style/font23" style="@style/about_license_font"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center" android:layout_gravity="center"

View file

@ -80,7 +80,7 @@
<TextView <TextView
android:id="@+id/about_text" android:id="@+id/about_text"
style="@style/font23" style="@style/about_license_font"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center" android:layout_gravity="center"

View file

@ -204,7 +204,7 @@
</style> </style>
<style name="unread_count_font" parent="@android:style/TextAppearance.Small"> <style name="unread_count_font" parent="@android:style/TextAppearance.Small">
<item name="android:textColor">?attr/secondaryTextColor</item> <item name="android:textColor">@color/colorH</item>
<item name="android:textSize">10sp</item> <item name="android:textSize">10sp</item>
</style> </style>
@ -243,6 +243,12 @@
<item name="android:textSize">25sp</item> <item name="android:textSize">25sp</item>
</style> </style>
<style name="about_license_font" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">?attr/primarySubtextDarkColor</item>
<item name="android:textSize">18sp</item>
<item name="android:textStyle">italic</item>
</style>
<style name="font23" parent="@android:style/TextAppearance.Medium"> <style name="font23" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">@color/colorD</item> <item name="android:textColor">@color/colorD</item>
<item name="android:textSize">18sp</item> <item name="android:textSize">18sp</item>