diff options
author | Kenny Root <kroot@google.com> | 2011-01-26 12:58:14 -0800 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2011-01-26 14:13:31 -0800 |
commit | 123499b4aa68cc9711fe5bfac8632b57e03eea44 (patch) | |
tree | 58e905eef3b789766a777014a0047517aabaa5eb /res | |
parent | 8c6dfd8b11954ac6ab7a85b3db45cbcc7e9d8b42 (diff) | |
download | packages_apps_packageinstaller-123499b4aa68cc9711fe5bfac8632b57e03eea44.zip packages_apps_packageinstaller-123499b4aa68cc9711fe5bfac8632b57e03eea44.tar.gz packages_apps_packageinstaller-123499b4aa68cc9711fe5bfac8632b57e03eea44.tar.bz2 |
Do not clip icon on install screen
Bug: 3385827
Change-Id: Ib7014f1377ca9fc470c333541d183f7dbd394de8
Diffstat (limited to 'res')
-rwxr-xr-x | res/layout/app_details.xml | 9 | ||||
-rwxr-xr-x | res/layout/install_confirm.xml | 6 | ||||
-rwxr-xr-x | res/layout/op_progress.xml | 1 | ||||
-rwxr-xr-x | res/layout/uninstall_confirm.xml | 6 | ||||
-rwxr-xr-x | res/layout/uninstall_progress.xml | 3 |
5 files changed, 10 insertions, 15 deletions
diff --git a/res/layout/app_details.xml b/res/layout/app_details.xml index 7dbd0a2..b368370 100755 --- a/res/layout/app_details.xml +++ b/res/layout/app_details.xml @@ -24,7 +24,8 @@ installation screens android:id="@+id/app_snippet" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginTop="12dip" + android:layout_marginTop="16dip" + android:layout_marginLeft="16dip" > <ImageView android:id="@+id/app_icon" android:layout_width="54dip" @@ -33,7 +34,7 @@ installation screens android:layout_alignParentLeft="true" android:gravity="left" android:scaleType="centerCrop" - android:paddingLeft="6dip"/> + android:layout_marginLeft="8dip"/> <TextView android:id="@+id/app_name" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -45,8 +46,8 @@ installation screens android:singleLine="true" android:gravity="center" android:layout_centerInParent="true" - android:paddingRight="6dip" - android:paddingLeft="6dip" + android:paddingRight="16dip" + android:paddingLeft="16dip" android:ellipsize="end"/> </RelativeLayout> diff --git a/res/layout/install_confirm.xml b/res/layout/install_confirm.xml index ca5dbd0..6072579 100755 --- a/res/layout/install_confirm.xml +++ b/res/layout/install_confirm.xml @@ -23,7 +23,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/padded" android:orientation="vertical" android:layout_weight="1" android:layout_width="match_parent" @@ -35,8 +34,8 @@ android:layout_height="wrap_content" android:text="@string/install_confirm_question" android:textAppearance="?android:attr/textAppearanceMedium" + style="@style/padded" android:paddingTop="16dip" - android:paddingLeft="16dip" android:paddingBottom="16dip"/> <ScrollView @@ -50,7 +49,8 @@ android:id="@+id/permissions_section" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginRight = "2dip" + android:layout_marginRight="?android:attr/scrollbarSize" + style="@style/padded" android:orientation="vertical"> <TextView android:id="@+id/security_settings_desc" diff --git a/res/layout/op_progress.xml b/res/layout/op_progress.xml index 3b41052..ded050c 100755 --- a/res/layout/op_progress.xml +++ b/res/layout/op_progress.xml @@ -15,7 +15,6 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/padded" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" diff --git a/res/layout/uninstall_confirm.xml b/res/layout/uninstall_confirm.xml index 4b27396..b6b1c69 100755 --- a/res/layout/uninstall_confirm.xml +++ b/res/layout/uninstall_confirm.xml @@ -23,7 +23,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/padded" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content"> @@ -33,6 +32,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:orientation="vertical" + style="@style/padded" android:paddingTop="6dip" android:paddingBottom="6dip"> @@ -44,8 +44,6 @@ android:textColor="?android:attr/textColorSecondary" android:textAppearance="?android:attr/textAppearanceMedium" android:paddingTop="16dip" - android:paddingLeft="6dip" - android:paddingRight="6dip" android:visibility="gone" /> <!-- The snippet (title & icon) about the application being uninstalled. --> @@ -61,8 +59,6 @@ android:textColor="?android:attr/textColorSecondary" android:textAppearance="?android:attr/textAppearanceMedium" android:paddingTop="16dip" - android:paddingLeft="6dip" - android:paddingRight="6dip" android:paddingBottom="16dip" /> </LinearLayout> diff --git a/res/layout/uninstall_progress.xml b/res/layout/uninstall_progress.xml index 394d1fd..e9e1ec2 100755 --- a/res/layout/uninstall_progress.xml +++ b/res/layout/uninstall_progress.xml @@ -15,7 +15,6 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/padded" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" @@ -30,7 +29,7 @@ android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:paddingTop="16dip" - android:paddingLeft="16dip" + style="@style/padded" android:paddingBottom="16dip" android:textAppearance="?android:attr/textAppearanceMedium" /> <ProgressBar |