[Libreoffice-commits] core.git: 3 commits - android/README android/source
Tomaž Vajngerl
tomaz.vajngerl at collabora.com
Fri Nov 13 03:07:46 PST 2015
android/README | 9 +++++++++
android/source/AndroidManifest.xml | 5 +++--
android/source/res/layout/about.xml | 4 ----
3 files changed, 12 insertions(+), 6 deletions(-)
New commits:
commit 613ef01748bd155653954f1effe00e395ba38a3b
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.com>
Date: Fri Nov 13 12:05:28 2015 +0100
android: Fixes to AndroidManifest
Change-Id: I661b3de74066831f22757b587e8b367913030573
diff --git a/android/source/AndroidManifest.xml b/android/source/AndroidManifest.xml
index 7721c69..d49771a 100644
--- a/android/source/AndroidManifest.xml
+++ b/android/source/AndroidManifest.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.libreoffice"
- android:installLocation="${installLocation}">
+ package="org.libreoffice">
<!-- App requires OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
@@ -23,6 +22,8 @@
android:label="@string/app_name"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@style/LibreOfficeTheme">
+ <!-- android:windowSoftInputMode="adjustResize" -->
+
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
commit e4130895577106f0b7eb5530d4e1754794f53547
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.com>
Date: Fri Nov 13 12:03:54 2015 +0100
android: add source of icons to README
Change-Id: Iad3ad138a9a7164d10ab6e51e22032ad115d08a5
diff --git a/android/README b/android/README
index 3f90a07..bd119ee 100644
--- a/android/README
+++ b/android/README
@@ -148,6 +148,15 @@ DocumentOverlay (org.libreoffice.overlay.DocumentOverlay) and DocumentOverlayVie
(org.libreoffice.overlay.DocumentOverlayView) are the classes that provide the overlay over
the document, where selections and the cursor is drawn.
+
+Icons
+*****
+
+App uses material design icons available at [1].
+
+
+[1] - https://www.google.com/design/icons/
+
Emulator and debugging notes
****************************
commit 7b3f6dd1685bec33aae79c95584b461fdb72e879
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.com>
Date: Fri Nov 13 11:58:29 2015 +0100
android: don't set text color in about dialog
Change-Id: Iea5df81bb2f85376dc67e1cca63d5586a834e1b0
diff --git a/android/source/res/layout/about.xml b/android/source/res/layout/about.xml
index e8d8322..8968c00 100644
--- a/android/source/res/layout/about.xml
+++ b/android/source/res/layout/about.xml
@@ -15,7 +15,6 @@
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:text="@string/app_version"
- android:textColor="@android:color/secondary_text_light"
android:textSize="18sp"/>
<TextView
@@ -23,7 +22,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/app_description"
- android:textColor="@android:color/secondary_text_light"
android:textSize="18sp"/>
<TextView
@@ -34,7 +32,6 @@
android:paddingBottom="20dip"
android:paddingTop="20dip"
android:text="@string/app_credits"
- android:textColor="@android:color/secondary_text_light"
android:textSize="18sp"/>
<TextView
@@ -43,7 +40,6 @@
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:text="@string/app_vendor"
- android:textColor="@android:color/secondary_text_light"
android:textSize="18sp"/>
</LinearLayout>
</ScrollView>
More information about the Libreoffice-commits
mailing list