summaryrefslogtreecommitdiffstats
path: root/src/res/layout/title_bar_nav.xml
blob: c22c716f784d70335166613a69949adc0999f54d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="utf-8"?>
<!--
   Copyright 2011, The Android Open Source Project

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<com.android.browser.NavigationBarPhone xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/primary"
    android:orientation="horizontal"
    android:elevation="8dp">

    <LinearLayout
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:gravity="center_vertical"
        android:paddingStart="4dp"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/incognito_icon"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginStart="8dp"
            android:paddingEnd="6dp"
            android:src="@drawable/ic_deco_incognito_normal"
            android:visibility="gone" />

        <com.android.browser.SiteTileView
            android:id="@+id/favicon_view"
            android:layout_width="44dp"
            android:layout_height="44dp"
            android:paddingStart="6dp"
            android:paddingEnd="6dp"
            android:contentDescription="@string/page_info"/>

        <!-- Cosmetic separator -->
        <View
            android:id="@+id/separator"
            android:layout_width="1dp"
            android:layout_height="36dp"
            android:paddingTop="6dp"
            android:paddingBottom="6dp"
            android:paddingStart="4dp"
            android:paddingEnd="4dp"
            android:background="@color/icon_white" />

        <ImageView
            android:id="@+id/stop"
            style="@style/NavButton"
            android:layout_width="wrap_content"
            android:layout_gravity="center_vertical"
            android:contentDescription="@string/accessibility_button_stop"
            android:paddingStart="6dp"
            android:paddingEnd="6dp"
            android:visibility="gone"
            android:src="@drawable/ic_action_stop_normal_inverted" />

        <com.android.browser.UrlInputView
            android:id="@+id/url"
            style="@style/Suggestions"
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1.0"
            android:background="@null"
            android:ellipsize="end"
            android:fadingEdge="horizontal"
            android:fadingEdgeLength="24dip"
            android:focusable="true"
            android:hint="@string/search_hint"
            android:imeOptions="actionGo|flagNoExtractUi|flagNoFullscreen"
            android:theme="@style/Widget.UrlInputView"
            android:inputType="textUri"
            android:lines="1"
            android:paddingStart="4dp"
            android:paddingEnd="6dp"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:fontFamily="sans-serif-condensed"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColorHint="@color/icon_white" />

        <ImageView
            android:id="@+id/voice"
            style="@style/NavButton"
            android:layout_width="wrap_content"
            android:contentDescription="@string/accessibility_button_voice"
            android:src="@drawable/ic_action_microphone_normal"
            android:visibility="gone" />

        <ImageButton
            android:id="@+id/clear"
            style="@style/NavButton"
            android:layout_width="wrap_content"
            android:contentDescription="@string/accessibility_button_clear"
            android:src="@drawable/ic_action_stop_normal_inverted"
            android:visibility="gone" />
    </LinearLayout>

    <FrameLayout
        android:layout_height="match_parent"
        android:layout_width="wrap_content">

        <ImageButton
            android:id="@+id/tab_switcher"
            style="@style/NavButton"
            android:layout_width="wrap_content"
            android:contentDescription="@string/accessibility_button_navscreen"
            android:src="@drawable/ic_action_tabswitcher" />

        <TextView
            android:id="@+id/tab_switcher_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:clickable="false"
            android:paddingBottom="1dp"
            android:paddingStart="1dp"
            android:paddingEnd="1dp"
            android:textColor="@color/white"
            android:textSize="13dp"
            android:textStyle="bold" />
    </FrameLayout>

    <ImageButton
        android:id="@+id/more_browser_settings"
        style="@style/OverflowButtonInverted" />
</com.android.browser.NavigationBarPhone>