Merge "Fixing low battery dialog" into ics-factoryrom

This commit is contained in:
Justin Ho
2011-09-21 07:59:32 -07:00
committed by Android (Google) Code Review
4 changed files with 4 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -22,13 +22,13 @@
android:id="@+id/padding"
android:orientation="vertical"
android:gravity="center"
android:padding="16dp"
>
<TextView android:id="@+id/subtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:paddingLeft="19dp"
android:textSize="18sp"
android:textColor="#ffffffff"
android:gravity="left"
android:text="@string/battery_low_subtitle"
@@ -37,19 +37,16 @@
<TextView android:id="@+id/level_percent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:textSize="18sp"
android:textColor="#ffffffff"
android:gravity="left"
android:paddingBottom="10px"
android:paddingLeft="19dp"
android:paddingBottom="16dp"
/>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="15px"
android:src="@drawable/battery_low_battery"
android:paddingTop="10px"
/>
</LinearLayout>