diff options
author | Amith Yamasani <yamasani@google.com> | 2010-12-29 14:28:39 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-12-29 14:28:39 -0800 |
commit | 303f38c4d36d9e51ce5c471b65fbd176ff05508f (patch) | |
tree | fe90308189904a564ddfb2ec1270ffab87a56a43 /core | |
parent | 8cb9975f35cfc8ce2529c9876b777eaa783bd9f7 (diff) | |
parent | d1d7e97a9ce4bd22c536040ee6dbccbbfd256842 (diff) | |
download | frameworks_base-303f38c4d36d9e51ce5c471b65fbd176ff05508f.zip frameworks_base-303f38c4d36d9e51ce5c471b65fbd176ff05508f.tar.gz frameworks_base-303f38c4d36d9e51ce5c471b65fbd176ff05508f.tar.bz2 |
Merge "Use proper divider asset and margins."
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/drawable-hdpi/nav_divider.png | bin | 1012 -> 0 bytes | |||
-rw-r--r-- | core/res/res/drawable-mdpi/nav_divider.png | bin | 2846 -> 0 bytes | |||
-rw-r--r-- | core/res/res/layout/fragment_bread_crumb_item.xml | 7 |
3 files changed, 4 insertions, 3 deletions
diff --git a/core/res/res/drawable-hdpi/nav_divider.png b/core/res/res/drawable-hdpi/nav_divider.png Binary files differdeleted file mode 100644 index 7ca3e61..0000000 --- a/core/res/res/drawable-hdpi/nav_divider.png +++ /dev/null diff --git a/core/res/res/drawable-mdpi/nav_divider.png b/core/res/res/drawable-mdpi/nav_divider.png Binary files differdeleted file mode 100644 index c9413d7..0000000 --- a/core/res/res/drawable-mdpi/nav_divider.png +++ /dev/null diff --git a/core/res/res/layout/fragment_bread_crumb_item.xml b/core/res/res/layout/fragment_bread_crumb_item.xml index e97508f..dbbb9a5 100644 --- a/core/res/res/layout/fragment_bread_crumb_item.xml +++ b/core/res/res/layout/fragment_bread_crumb_item.xml @@ -20,11 +20,12 @@ > <ImageView android:id="@android:id/left_icon" - android:src="@drawable/nav_divider" + android:src="?attr/dividerVertical" android:layout_width="wrap_content" android:layout_height="match_parent" - android:layout_marginTop="8dip" - android:layout_marginBottom="8dip" + android:scaleType="fitXY" + android:layout_marginTop="12dip" + android:layout_marginBottom="12dip" /> <TextView |