summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Klaassen <justinklaassen@google.com>2015-06-02 17:48:45 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-02 17:48:45 +0000
commit1326e667443a55c847fb0359fb3c7808958774bc (patch)
tree0a6c68b99e4fae07e0a238d86cf45c34d1b23b93
parentae57f25e270d75b9409a1efb85c11b82f8e5929d (diff)
parent7531cd7dadfcb9c7df658fb2193c42b65ea0e21f (diff)
downloadandroid_packages_apps_ExactCalculator-1326e667443a55c847fb0359fb3c7808958774bc.tar.gz
android_packages_apps_ExactCalculator-1326e667443a55c847fb0359fb3c7808958774bc.tar.bz2
android_packages_apps_ExactCalculator-1326e667443a55c847fb0359fb3c7808958774bc.zip
am 7531cd7d: Force textAlignment == viewEnd
* commit '7531cd7dadfcb9c7df658fb2193c42b65ea0e21f': Force textAlignment == viewEnd
-rw-r--r--AndroidManifest.xml3
-rw-r--r--res/values/styles.xml2
2 files changed, 4 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4f90e22..b01e2c8 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -22,7 +22,8 @@
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher_calculator"
- android:label="@string/app_name">
+ android:label="@string/app_name"
+ android:supportsRtl="true">
<activity
android:name=".Calculator"
diff --git a/res/values/styles.xml b/res/values/styles.xml
index ed77ea9..2a074e8 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -28,6 +28,7 @@
<item name="android:windowActionModeOverlay">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
+ <item name="android:layoutDirection">ltr</item>
</style>
<style name="Theme.Licenses">
@@ -40,6 +41,7 @@
<item name="android:fontFamily">sans-serif-light</item>
<item name="android:includeFontPadding">false</item>
<item name="android:gravity">bottom|end</item>
+ <item name="android:textAlignment">viewEnd</item>
</style>
<style name="PadButtonStyle" parent="@android:style/Widget.Material.Light.Button.Borderless">