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" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 21 | android:layout_margin="@dimen/combo_bookmark_thumbnail_margin" |
Kulanthaivel Palanichamy | a94b4d3 | 2015-01-29 19:32:14 -0800 | [diff] [blame] | 22 | android:orientation="vertical" |
Pankaj Garg | 21dad56 | 2015-07-02 17:17:24 -0700 | [diff] [blame] | 23 | android:paddingEnd="@dimen/combo_horizontalSpacing" |
| 24 | android:paddingStart="@dimen/combo_horizontalSpacing" > |
Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 25 | |
Pankaj Garg | 07b2fd9 | 2015-07-15 12:07:37 -0700 | [diff] [blame] | 26 | <FrameLayout |
| 27 | android:id="@+id/container" |
Pankaj Garg | 21dad56 | 2015-07-02 17:17:24 -0700 | [diff] [blame] | 28 | android:layout_width="@dimen/bookmarkThumbnailWidth" |
Pankaj Garg | 07b2fd9 | 2015-07-15 12:07:37 -0700 | [diff] [blame] | 29 | android:layout_height="@dimen/bookmarkThumbnailHeight"> |
| 30 | |
| 31 | <!-- The SiteTileView or FolderTileView will be injected here dynamically --> |
| 32 | |
| 33 | <!-- The Managed (MDM) badge (an ImageView) will be injected here dynamically --> |
| 34 | |
| 35 | </FrameLayout> |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 36 | |
Pankaj Garg | 21dad56 | 2015-07-02 17:17:24 -0700 | [diff] [blame] | 37 | <TextView |
| 38 | android:id="@+id/label" |
| 39 | android:layout_width="@dimen/bookmarkThumbnailWidth" |
| 40 | android:layout_height="wrap_content" |
| 41 | android:gravity="center" |
| 42 | android:ellipsize="marquee" |
| 43 | android:lines="2" |
| 44 | android:paddingBottom="2dip" |
| 45 | android:paddingTop="2dip" |
| 46 | android:textAppearance="@style/BookmarkText" /> |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 47 | </com.android.browser.view.BookmarkContainer> |