blob: bddff1ad5749dbf00653921cc5de1259ff6b00ea [file] [log] [blame]
Jason parks8fd5bc92011-01-12 16:03:31 -06001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
Paul Lawrenceaa057382014-07-16 10:21:04 -07004** Copyright 2014, The Android Open Source Project
Jason parks8fd5bc92011-01-12 16:03:31 -06005**
6** Licensed under the Apache License, Version 2.0 (the "License")
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<!-- Status to show on the left side of lock screen -->
21<LinearLayout
Ben Komalo9cec1be2011-09-01 10:30:13 -070022 xmlns:android="http://schemas.android.com/apk/res/android"
23 android:orientation="vertical"
Paul Lawrenceb191bcc2014-06-12 07:59:43 -070024 android:layout_width="match_parent"
Ben Komalo9cec1be2011-09-01 10:30:13 -070025 android:layout_height="wrap_content"
Paul Lawrenceaa057382014-07-16 10:21:04 -070026 android:layout_gravity="center_horizontal">
27
Paul Lawrencebd4c3212014-07-23 13:57:17 -070028 <!-- We need android:gravity="center_horizontal" to make multi line
29 status strings look good -->
Jason parks8fd5bc92011-01-12 16:03:31 -060030 <TextView
Jason parks8fd5bc92011-01-12 16:03:31 -060031 android:id="@+id/status"
32 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070034 android:layout_marginStart="8dip"
35 android:layout_marginEnd="8dip"
Paul Lawrence4fd2e5f2014-08-11 14:05:33 -070036 android:textSize="16sp"
37 android:fontFamily="sans-serif"
38 android:textColor="@android:color/white"
Jason parks8fd5bc92011-01-12 16:03:31 -060039 android:text="@string/enter_password"
Paul Lawrencebd4c3212014-07-23 13:57:17 -070040 android:layout_gravity="center_horizontal"
41 android:gravity="center_horizontal" />
Paul Lawrenceaa057382014-07-16 10:21:04 -070042
Paul Lawrence9ac2d812014-03-18 10:59:18 -070043 <TextView
44 android:id="@+id/owner_info"
45 android:layout_width="match_parent"
46 android:layout_height="wrap_content"
47 android:layout_marginTop="10dip"
Paul Lawrenceb191bcc2014-06-12 07:59:43 -070048 android:layout_marginStart="8dip"
49 android:layout_marginEnd="8dip"
Paul Lawrence9ac2d812014-03-18 10:59:18 -070050 android:singleLine="true"
51 android:ellipsize="marquee"
52 android:marqueeRepeatLimit ="marquee_forever"
Paul Lawrence9ac2d812014-03-18 10:59:18 -070053 android:textSize="16sp"
Paul Lawrence4fd2e5f2014-08-11 14:05:33 -070054 android:fontFamily="sans-serif"
55 android:textColor="#B3FFFFFF"
56 android:gravity="center_horizontal" />
Paul Lawrenceaa057382014-07-16 10:21:04 -070057
Jason parks8fd5bc92011-01-12 16:03:31 -060058</LinearLayout>