Some UI improvements
This commit is contained in:
parent
cca253e1fa
commit
5627bcf81b
4 changed files with 10 additions and 5 deletions
|
@ -690,8 +690,7 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
|||
mCore.addListener(this);
|
||||
if (isPush) {
|
||||
Log.w(
|
||||
"[Manager] We are here because of a received push notification, force network reachability and enter background mode before starting the Core");
|
||||
mCore.setNetworkReachable(true);
|
||||
"[Manager] We are here because of a received push notification, enter background mode before starting the Core");
|
||||
mCore.enterBackground();
|
||||
}
|
||||
mCore.start();
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/about_text"
|
||||
style="@style/font23"
|
||||
style="@style/about_license_font"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/about_text"
|
||||
style="@style/font23"
|
||||
style="@style/about_license_font"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
</style>
|
||||
|
||||
<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>
|
||||
</style>
|
||||
|
||||
|
@ -243,6 +243,12 @@
|
|||
<item name="android:textSize">25sp</item>
|
||||
</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">
|
||||
<item name="android:textColor">@color/colorD</item>
|
||||
<item name="android:textSize">18sp</item>
|
||||
|
|
Loading…
Reference in a new issue