blob: 711a0a15ddb67941ca109a3c6a6ff9484423ec00 [file] [log] [blame]
Amith Yamasanib61cf512010-09-12 08:17:50 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:orientation="horizontal"
20 android:padding="4dip"
21 android:gravity="center_vertical"
22 android:layout_width="wrap_content"
23 android:layout_height="match_parent">
24
25 <!-- ImageView
Ying Wang8935b152010-11-23 12:03:43 -080026 android:src="@mipmap/ic_launcher_settings"
Amith Yamasanib61cf512010-09-12 08:17:50 -070027 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:layout_gravity="center_vertical"
30 android:layout_marginLeft="4dip"
31 android:layout_marginRight="4dip"
32 /-->
33
34 <view class="com.android.settings.Settings$BreadCrumbs"
35 android:id="@+id/bread_crumbs"
36 android:layout_width="wrap_content"
37 android:layout_height="match_parent"
38 android:orientation="horizontal">
39
40 <TextView android:id="@+id/level_up_title"
41 android:layout_width="wrap_content"
42 android:layout_height="match_parent"
43 android:gravity="center_vertical"
44 style="?android:attr/textAppearanceMediumInverse"
45 />
46
47 <ImageView
48 android:id="@+id/level_divider"
49 android:layout_width="wrap_content"
50 android:layout_height="match_parent"
51 android:layout_marginTop="4dip"
52 android:layout_marginBottom="4dip"
53 android:layout_marginLeft="12dip"
54 android:layout_marginRight="12dip"
55 android:src="@drawable/nav_divider"/>
56
57 <TextView android:id="@+id/level_current_title"
58 android:layout_width="wrap_content"
59 android:layout_height="match_parent"
60 android:gravity="center_vertical"
61 style="?android:attr/textAppearanceMediumInverse"
62 />
63 </view>
64</LinearLayout>