Skip to content

Commit c06669a

Browse files
dsandlerAndroid (Google) Code Review
authored andcommitted
Merge "Fix scaling on notification panel wifi/battery icons." into ics-mr1
2 parents 84b0213 + 989b9f2 commit c06669a

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

packages/SystemUI/res/layout-sw600dp/status_bar_notification_panel_title.xml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,39 +39,39 @@
3939

4040
<ImageView
4141
android:id="@+id/bluetooth"
42-
android:layout_height="32dp"
43-
android:layout_width="32dp"
42+
android:layout_height="wrap_content"
43+
android:layout_width="wrap_content"
4444
android:scaleType="centerInside"
45-
android:baseline="22dp"
45+
android:baseline="18dp"
4646
android:visibility="gone"
4747
android:contentDescription="@null"
4848
/>
4949

5050
<FrameLayout
5151
android:id="@+id/netwerk"
52-
android:layout_height="32dp"
53-
android:layout_width="32dp"
52+
android:layout_height="wrap_content"
53+
android:layout_width="wrap_content"
5454
android:layout_marginRight="4dp"
5555
>
5656

5757
<ImageView
5858
android:id="@+id/network_signal"
59-
android:layout_height="match_parent"
60-
android:layout_width="match_parent"
59+
android:layout_height="wrap_content"
60+
android:layout_width="wrap_content"
6161
android:contentDescription="@null"
6262
/>
6363

6464
<ImageView
6565
android:id="@+id/network_type"
66-
android:layout_height="match_parent"
67-
android:layout_width="match_parent"
66+
android:layout_height="wrap_content"
67+
android:layout_width="wrap_content"
6868
android:contentDescription="@null"
6969
/>
7070

7171
<ImageView
7272
android:id="@+id/network_direction"
73-
android:layout_height="match_parent"
74-
android:layout_width="match_parent"
73+
android:layout_height="wrap_content"
74+
android:layout_width="wrap_content"
7575
android:contentDescription="@null"
7676
/>
7777

@@ -91,12 +91,14 @@
9191

9292
<ImageView
9393
android:id="@+id/battery"
94-
android:layout_height="32dp"
95-
android:layout_width="32dp"
94+
android:layout_height="wrap_content"
95+
android:layout_width="wrap_content"
9696
android:scaleType="centerInside"
9797
android:layout_toRightOf="@id/network_text"
9898
android:layout_alignBaseline="@id/network_signal"
99-
android:baseline="22dp"
99+
android:baseline="18dp"
100+
android:layout_marginLeft="8dp"
101+
android:layout_marginRight="8dp"
100102
android:contentDescription="@null"
101103
/>
102104

0 commit comments

Comments
 (0)