Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 17 | <com.android.browser.view.BookmarkContainer |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
John Reck | 71efc2b | 2011-05-09 16:54:28 -0700 | [diff] [blame] | 19 | android:layout_width="wrap_content" |
| 20 | android:layout_height="wrap_content" |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 21 | android:paddingStart="@dimen/combo_horizontalSpacing" |
| 22 | android:paddingEnd="@dimen/combo_horizontalSpacing" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 23 | android:layout_margin="@dimen/combo_bookmark_thumbnail_margin" |
John Reck | 71efc2b | 2011-05-09 16:54:28 -0700 | [diff] [blame] | 24 | android:background="@drawable/bookmark_thumb_selector" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 25 | android:orientation="vertical" |
Leon Scroggins | 266ef43 | 2009-07-07 11:25:28 -0400 | [diff] [blame] | 26 | > |
Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 27 | |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 28 | <com.android.browser.view.BookmarkThumbImageView |
| 29 | android:id="@+id/thumb_image" |
Jeff Hamilton | f302637 | 2010-08-19 00:12:27 -0500 | [diff] [blame] | 30 | android:layout_width="@dimen/bookmarkThumbnailWidth" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 31 | android:layout_height="@dimen/bookmarkThumbnailHeight" |
| 32 | android:paddingTop="2dip" |
| 33 | android:scaleType="centerCrop" |
| 34 | android:src="@drawable/browser_thumbnail" |
John Reck | b3417f0 | 2011-01-14 11:01:05 -0800 | [diff] [blame] | 35 | /> |
| 36 | |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 37 | <TextView |
| 38 | android:id="@+id/label" |
Romain Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame] | 39 | android:layout_width="match_parent" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 40 | android:layout_height="wrap_content" |
John Reck | b3417f0 | 2011-01-14 11:01:05 -0800 | [diff] [blame] | 41 | android:ellipsize="marquee" |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 42 | android:paddingStart="8dip" |
| 43 | android:paddingEnd="4dip" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 44 | android:paddingTop="2dip" |
| 45 | android:paddingBottom="2dip" |
| 46 | android:singleLine="true" |
Kulanthaivel Palanichamy | 9e4211c | 2015-02-09 11:27:14 -0800 | [diff] [blame] | 47 | android:textAppearance="@style/BookmarkText" |
Leon Scroggins | 8b4ea19 | 2009-09-21 19:05:49 -0400 | [diff] [blame] | 48 | /> |
| 49 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 50 | </com.android.browser.view.BookmarkContainer> |