1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
7 <org.chromium.chrome.browser.banners.AppBannerView
8 xmlns:android="http://schemas.android.com/apk/res/android"
9 android:id="@+id/app_banner_view"
10 android:background="@drawable/card_background_default"
11 android:clickable="true"
12 android:focusableInTouchMode="true"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content">
15 <!-- View showing the icon. -->
17 android:id="@+id/app_icon"
18 android:adjustViewBounds="true"
19 android:layout_width="wrap_content"
20 android:layout_height="@dimen/app_banner_icon_size"
21 android:layout_marginEnd="@dimen/app_banner_icon_margin_end" />
23 <!-- View showing the app's title. -->
25 android:id="@+id/app_title"
26 android:textAppearance="@style/AppBannerTitle"
27 android:includeFontPadding="false"
29 android:ellipsize="end"
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:layout_marginTop="@dimen/app_banner_title_margin_top"
33 android:layout_marginBottom="@dimen/app_banner_title_margin_bottom" />
35 <!-- Button that triggers installation and opening of the app. -->
37 android:id="@+id/app_install_button"
38 style="@style/AppBannerButton"
39 android:textColor="@color/app_banner_install_button_fg"
40 android:ellipsize="end"
41 android:singleLine="true"
42 android:minHeight="@dimen/app_banner_button_height"
43 android:paddingStart="@dimen/app_banner_button_padding_sides"
44 android:paddingEnd="@dimen/app_banner_button_padding_sides"
45 android:paddingTop="@dimen/app_banner_button_padding_above_below"
46 android:paddingBottom="@dimen/app_banner_button_padding_above_below"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:layout_marginTop="@dimen/app_banner_button_margin_top" />
51 <!-- Logo for the store. -->
53 android:id="@+id/store_logo"
54 android:src="@drawable/google_play_logo"
55 android:adjustViewBounds="true"
56 android:layout_width="wrap_content"
57 android:layout_height="@dimen/app_banner_logo_height"
58 android:layout_marginTop="@dimen/app_banner_logo_margin_top"
59 android:layout_marginBottom="@dimen/app_banner_logo_margin_bottom"
60 android:layout_marginEnd="@dimen/app_banner_logo_margin_end"/>
62 <!-- View showing how well the app is rated. -->
63 <org.chromium.chrome.browser.banners.RatingView
64 android:id="@+id/app_rating"
65 android:adjustViewBounds="true"
66 android:layout_width="wrap_content"
67 android:layout_height="@dimen/app_banner_star_height" />
69 <!-- Button that closes the banner. -->
71 android:id="@+id/close_button"
72 android:contentDescription="@string/infobar_close"
73 android:adjustViewBounds="true"
74 android:src="@drawable/dismiss"
75 android:background="@drawable/app_banner_button_close"
76 android:padding="@dimen/app_banner_close_button_padding"
77 android:layout_width="wrap_content"
78 android:layout_height="wrap_content"/>
80 <!-- View covering the entire banner. Used to indicate the banner is highlighted. -->
82 android:id="@+id/banner_highlight"
83 android:background="@color/app_banner_card_highlight"
84 android:visibility="gone"
85 android:layout_width="match_parent"
86 android:layout_height="match_parent" />
87 </org.chromium.chrome.browser.banners.AppBannerView>