restrict items in PowerMenu to a max height

the items in the PowerMenu expand in height to accommodate the change in font size by the user. However according to UX spec, the items should always be 52dp in height, no more, no less.

So, in this change, the height is locked to 52dp. The padding is removed so that text doesn't end up getting cut off. The padding/margin is also updated to match the latest spec.

Screenshots:
Normal font size - https://screenshot.googleplex.com/7tfe2piTgtVbrH3
Largest font size - https://screenshot.googleplex.com/8d5cXc3oLZAp32C

BUG: 197032519
Test: Manual test
(cherry picked from commit 3345d64634dd3b1c4b0f18d350c7889ba465c2a6)
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:224e7fc23428a68f4fc8a3bebd928dd0dbb7294d)
Merged-In: Ic5abb829b6bd4d6097deaf3d2a56d8e6b7b2f5df
Change-Id: Ic5abb829b6bd4d6097deaf3d2a56d8e6b7b2f5df
diff --git a/core/res/res/layout-watch/global_actions_item.xml b/core/res/res/layout-watch/global_actions_item.xml
index 3d3f341..f964a4a 100644
--- a/core/res/res/layout-watch/global_actions_item.xml
+++ b/core/res/res/layout-watch/global_actions_item.xml
@@ -15,21 +15,18 @@
 -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="match_parent"
-	android:layout_height="wrap_content"
+        android:layout_height="52dp"
         android:gravity="center"
-        android:minHeight="52dp"
         android:minWidth="172dp"
-        android:paddingStart="12dp"
-        android:paddingEnd="12dp"
-        android:paddingTop="6dp"
-        android:paddingBottom="6dp"
+        android:paddingStart="14dp"
+        android:paddingEnd="14dp"
         android:background="@drawable/global_actions_item_grey_background">
 
     <ImageView android:id="@+id/icon"
             android:duplicateParentState="true"
             android:scaleType="centerInside"
             android:gravity="center"
-            android:layout_marginEnd="8dp"
+            android:layout_marginEnd="6dp"
             android:layout_width="24dp"
             android:layout_height="24dp"/>