You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.1 KiB
85 lines
3.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 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.
|
|
-->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/digital_widget"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="top|center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<TextClock
|
|
android:id="@+id/clock"
|
|
style="@style/widget_big_thin"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|top"
|
|
android:ellipsize="none"
|
|
android:format12Hour="@string/lock_screen_12_hour_format"
|
|
android:format24Hour="@string/lock_screen_24_hour_format"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|top">
|
|
|
|
<TextClock
|
|
android:id="@+id/date"
|
|
style="@style/widget_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:ellipsize="none"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/white" />
|
|
|
|
<ImageView
|
|
android:id="@+id/nextAlarmIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:contentDescription="@null"
|
|
android:scaleType="center" />
|
|
|
|
<TextView
|
|
android:id="@+id/nextAlarm"
|
|
style="@style/widget_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:ellipsize="none"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/world_city_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|top"
|
|
android:layout_marginTop="20dp"
|
|
android:divider="@null" />
|
|
|
|
</LinearLayout> |