Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e43e905 authored by Winson Chung's avatar Winson Chung Committed by Android Git Automerger
Browse files

am c44a0c07: Merge "Tweaking cling text sizes for other languages. (Bug...

am c44a0c07: Merge "Tweaking cling text sizes for other languages. (Bug 11151675)" into jb-ub-now-jetsonic

* commit 'c44a0c07':
  Tweaking cling text sizes for other languages. (Bug 11151675)
parents 70e16dbe c44a0c07
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -39,16 +39,14 @@
                android:layout_marginBottom="10dp"
                android:text="@string/first_run_cling_title"
                android:textColor="#FFFFFFFF"
                android:textSize="30sp"
                android:gravity="center" />
            <TextView
                style="@style/ClingAltTitleText"
                style="@style/ClingAltText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:text="@string/first_run_cling_description"
                android:textColor="#80000000"
                android:textSize="16sp"
                android:gravity="center" />
        </LinearLayout>
        <TextView
+24 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
  
          http://www.apache.org/licenses/LICENSE-2.0
  
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<resources>
<!-- Cling -->
    <dimen name="cling_title_text_size">22sp</dimen>
    <dimen name="cling_text_size">16sp</dimen>
    <dimen name="cling_alt_title_text_size">30sp</dimen>
    <dimen name="cling_alt_text_size">16sp</dimen>
    <dimen name="cling_hint_text_size">18sp</dimen>
</resources>
+6 −0
Original line number Diff line number Diff line
@@ -39,6 +39,12 @@
    <add-resource type="dimen" name="custom_cling_margin_right" />
    <add-resource type="dimen" name="custom_cling_margin_left" />
    
    <dimen name="cling_title_text_size">20sp</dimen>
    <dimen name="cling_text_size">14sp</dimen>
    <dimen name="cling_alt_title_text_size">24sp</dimen>
    <dimen name="cling_alt_text_size">16sp</dimen>
    <dimen name="cling_hint_text_size">14sp</dimen>

<!-- Workspace -->
    <dimen name="workspace_max_gap">16dp</dimen>
    <dimen name="workspace_overscroll_drawable_padding">0dp</dimen>
+13 −7
Original line number Diff line number Diff line
@@ -52,27 +52,33 @@
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_marginBottom">5dp</item>
        <item name="android:textSize">22sp</item>
        <item name="android:textSize">@dimen/cling_title_text_size</item>
        <item name="android:textColor">#ffffff</item>
        <item name="android:fontFamily">sans-serif-condensed</item>
    </style>
    <style name="ClingText">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textSize">@dimen/cling_text_size</item>
        <item name="android:textColor">#80000000</item>
        <item name="android:lineSpacingMultiplier">1.1</item>
    </style>
    <style name="ClingAltTitleText">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textSize">24sp</item>
        <item name="android:textSize">@dimen/cling_alt_title_text_size</item>
        <item name="android:textColor">#49C0EC</item>
    </style>
    <style name="ClingText">
    <style name="ClingAltText">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textSize">16sp</item>
        <item name="android:textColor">#80000000</item>
        <item name="android:lineSpacingMultiplier">1.1</item>
        <item name="android:textSize">@dimen/cling_alt_text_size</item>
        <item name="android:textColor">#49C0EC</item>
    </style>
    <style name="ClingHintText">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textSize">18sp</item>
        <item name="android:textSize">@dimen/cling_hint_text_size</item>
        <item name="android:textColor">#80ffffff</item>
        <item name="android:fontFamily">sans-serif-condensed</item>
    </style>
+3 −0
Original line number Diff line number Diff line
@@ -4122,6 +4122,9 @@ public class Launcher extends Activity
        if (grid.isTablet()) {
            return false;
        }
        if (grid.isLandscape) {
            return false;
        }

        // disable clings when running in a test harness
        if(ActivityManager.isRunningInTestHarness()) return false;