blob: 8b05b3b34c59ae9ae970268527005832084fccdf [file] [log] [blame]
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -04001<?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 Amirzada41242f22014-03-21 12:12:18 -070017<com.android.browser.view.BookmarkContainer
Bijan Amirzada9b1e9882014-02-26 17:15:46 -080018 xmlns:android="http://schemas.android.com/apk/res/android"
John Reck71efc2b2011-05-09 16:54:28 -070019 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
Vivek Sekhared791da2015-02-22 12:39:05 -080021 android:paddingStart="@dimen/combo_horizontalSpacing"
22 android:paddingEnd="@dimen/combo_horizontalSpacing"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080023 android:layout_margin="@dimen/combo_bookmark_thumbnail_margin"
John Reck71efc2b2011-05-09 16:54:28 -070024 android:background="@drawable/bookmark_thumb_selector"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080025 android:orientation="vertical"
Leon Scroggins266ef432009-07-07 11:25:28 -040026 >
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040027
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080028 <com.android.browser.view.BookmarkThumbImageView
29 android:id="@+id/thumb_image"
Jeff Hamiltonf3026372010-08-19 00:12:27 -050030 android:layout_width="@dimen/bookmarkThumbnailWidth"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080031 android:layout_height="@dimen/bookmarkThumbnailHeight"
32 android:paddingTop="2dip"
33 android:scaleType="centerCrop"
34 android:src="@drawable/browser_thumbnail"
John Reckb3417f02011-01-14 11:01:05 -080035 />
36
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080037 <TextView
38 android:id="@+id/label"
Romain Guy15b8ec62010-01-08 15:06:43 -080039 android:layout_width="match_parent"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080040 android:layout_height="wrap_content"
John Reckb3417f02011-01-14 11:01:05 -080041 android:ellipsize="marquee"
Vivek Sekhared791da2015-02-22 12:39:05 -080042 android:paddingStart="8dip"
43 android:paddingEnd="4dip"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080044 android:paddingTop="2dip"
45 android:paddingBottom="2dip"
46 android:singleLine="true"
Kulanthaivel Palanichamy9e4211c2015-02-09 11:27:14 -080047 android:textAppearance="@style/BookmarkText"
Leon Scroggins8b4ea192009-09-21 19:05:49 -040048 />
49
Bijan Amirzada41242f22014-03-21 12:12:18 -070050</com.android.browser.view.BookmarkContainer>