2017-01-14 00:26:21 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-03 21:09:35 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="10dp">
|
2017-01-14 00:26:21 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="Weather on your Pebble"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textStyle="bold"
|
2017-04-03 21:09:35 +02:00
|
|
|
android:textSize="20dp" />
|
2017-01-14 00:26:21 +01:00
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
<androidx.legacy.widget.Space
|
2017-01-14 00:26:21 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/activity_vertical_margin" />
|
|
|
|
|
|
|
|
<TextView
|
2017-04-03 21:09:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/weather_notification_label"
|
|
|
|
android:text="@string/weather_notification_label" />
|
2017-01-14 00:26:21 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|