1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
9 <org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper
10 xmlns:android="http://schemas.android.com/apk/res/android"
11 xmlns:chrome="http://schemas.android.com/apk/res-auto"
12 android:layout_width="match_parent"
13 android:layout_height="match_parent"
14 android:orientation="vertical"
15 android:id="@+id/wrapper"
16 android:background="@color/tab_switcher_background"
17 android:divider="@drawable/accessibility_tab_switcher_divider"
18 android:showDividers="middle">
20 <org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelListView
21 android:id="@+id/list_view"
22 android:layout_width="match_parent"
23 android:layout_height="0dp"
24 android:layout_weight="1"
25 android:contentDescription="@string/accessibility_tab_switcher_standard_stack" />
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:orientation="horizontal"
31 android:id="@+id/button_wrapper"
32 android:visibility="gone">
34 <org.chromium.chrome.browser.widget.TintedImageButton
35 android:id="@+id/standard_tabs_button"
36 android:layout_width="0dp"
37 android:layout_height="wrap_content"
38 android:layout_weight="1"
39 android:background="@drawable/btn_bg_holo_active"
40 android:src="@drawable/btn_normal_tabs"
41 chrome:tint="@color/light_mode_tint"
42 android:contentDescription="@string/accessibility_tab_switcher_standard_stack"
43 style="?android:attr/borderlessButtonStyle" />
46 android:layout_width="1px"
47 android:layout_height="18dp"
48 android:layout_gravity="center_vertical"
49 android:background="#292929" />
51 <org.chromium.chrome.browser.widget.TintedImageButton
52 android:id="@+id/incognito_tabs_button"
53 android:layout_width="0dp"
54 android:layout_height="wrap_content"
55 android:layout_weight="1"
56 android:src="@drawable/btn_incognito_tabs"
57 chrome:tint="@color/light_mode_tint"
58 android:background="@drawable/btn_bg_holo"
59 android:contentDescription="@string/accessibility_tab_switcher_incognito_stack"
60 style="?android:attr/borderlessButtonStyle" />
62 </org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper>