142 lines
5.4 KiB
XML
142 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/black"
|
|
android:padding="12dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/hud_cols"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/hud_left_col"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/hud_time"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif-thin"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="64sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/hud_day"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#808080"
|
|
android:textSize="24sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/hud_date"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#808080"
|
|
android:textSize="24sp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/hud_weather_row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/hud_weather_icon"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_marginRight="8dp"
|
|
android:scaleType="centerInside"
|
|
android:contentDescription="@string/app_name" />
|
|
|
|
<TextView
|
|
android:id="@+id/hud_weather_temp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif-light"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="32sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/hud_right_col"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:layout_marginLeft="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/hud_more_badge"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignTop="@id/hud_title"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textColor="#34A7FF"
|
|
android:textSize="28sp"
|
|
android:singleLine="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/hud_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toLeftOf="@id/hud_more_badge"
|
|
android:layout_marginRight="12dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif-light"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="32sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/hud_subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/hud_title"
|
|
android:ellipsize="end"
|
|
android:fontFamily="sans-serif-light"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#808080"
|
|
android:textSize="24sp" />
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/hud_status_dot"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:fontFamily="sans-serif"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:textColor="#808080"
|
|
android:textSize="8sp" />
|
|
|
|
</RelativeLayout>
|