diff options
author | Michael Kolb <kolby@google.com> | 2011-09-01 11:39:42 -0700 |
---|---|---|
committer | Michael Kolb <kolby@google.com> | 2011-09-01 11:43:10 -0700 |
commit | 80c273120dcf4336988b7b82c38ead8a1361267e (patch) | |
tree | 675800b5c6311f3a894fd52466a0215bdd3b8e9e /res/layout | |
parent | afe66e21cc7b8724b2ff653e0786198bf2a24aca (diff) | |
download | packages_apps_Browser-80c273120dcf4336988b7b82c38ead8a1361267e.zip packages_apps_Browser-80c273120dcf4336988b7b82c38ead8a1361267e.tar.gz packages_apps_Browser-80c273120dcf4336988b7b82c38ead8a1361267e.tar.bz2 |
Fix thumb size in Quick Controls
Bug: 5248402
Change-Id: I51e4bcbfec2d9effdd7216327f969b87fc620465
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/qc_tab.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/qc_tab.xml b/res/layout/qc_tab.xml index 6fcd0f4..af8d46f 100644 --- a/res/layout/qc_tab.xml +++ b/res/layout/qc_tab.xml @@ -37,14 +37,14 @@ /> <ImageView android:id="@+id/thumb" - android:layout_height="@dimen/qc_thumb_width" - android:layout_width="@dimen/qc_thumb_height" + android:layout_width="@dimen/qc_thumb_width" + android:layout_height="@dimen/qc_thumb_height" android:layout_marginTop= "1dip" android:layout_marginLeft= "1dip" android:layout_marginRight= "1dip" android:layout_marginBottom= "1dip" android:src="@drawable/browser_thumbnail" - android:scaleType="centerCrop" + android:scaleType="centerInside" /> <TextView android:id="@+id/title2" android:layout_width="match_parent" |