diff options
author | Peter Ng <petergng@google.com> | 2011-10-14 17:33:46 -0700 |
---|---|---|
committer | Peter Ng <petergng@google.com> | 2011-10-17 15:58:20 -0700 |
commit | d157dbc1b55709209daa48a5bdbd6fe62835852d (patch) | |
tree | 0b6a4a9e1a076af00326c6276aa19f82d5f30686 /res/layout/app_details.xml | |
parent | 11a65e67245a87dfccd10c3b84c0b715f59d4ef6 (diff) | |
download | packages_apps_packageinstaller-d157dbc1b55709209daa48a5bdbd6fe62835852d.zip packages_apps_packageinstaller-d157dbc1b55709209daa48a5bdbd6fe62835852d.tar.gz packages_apps_packageinstaller-d157dbc1b55709209daa48a5bdbd6fe62835852d.tar.bz2 |
layout fixes and asset updates to package installer
Bug: 5361373
Change-Id: I6e5e1271013130d3bb7e6fa3acd59db5eff2cc37
Diffstat (limited to 'res/layout/app_details.xml')
-rw-r--r-- | res/layout/app_details.xml | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/res/layout/app_details.xml b/res/layout/app_details.xml index b368370..7f35d72 100644 --- a/res/layout/app_details.xml +++ b/res/layout/app_details.xml @@ -24,30 +24,45 @@ installation screens android:id="@+id/app_snippet" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginTop="16dip" - android:layout_marginLeft="16dip" + android:paddingLeft="16dip" + android:paddingRight="16dip" + android:paddingTop="24dip" > <ImageView android:id="@+id/app_icon" - android:layout_width="54dip" - android:layout_height="54dip" + android:layout_width="32dip" + android:layout_height="32dip" + android:layout_marginLeft="8dip" android:background="@color/transparent" android:layout_alignParentLeft="true" android:gravity="left" - android:scaleType="centerCrop" - android:layout_marginLeft="8dip"/> + android:scaleType="centerCrop"/> <TextView android:id="@+id/app_name" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:gravity="center" android:textAppearance="?android:attr/textAppearanceLarge" android:textColor="?android:attr/textColorPrimary" android:shadowColor="@color/shadow" android:shadowRadius="2" android:layout_toRightOf="@id/app_icon" android:singleLine="true" - android:gravity="center" android:layout_centerInParent="true" android:paddingRight="16dip" + android:paddingTop="3dip" android:paddingLeft="16dip" android:ellipsize="end"/> + <FrameLayout + android:id="@+id/top_divider" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="4dip" + android:layout_below="@id/app_name"> + <ProgressBar + android:id="@+id/progress_bar" + style="?android:attr/progressBarStyleHorizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + </FrameLayout> + </RelativeLayout> |