<?xml version="1.0" encoding="utf-8"?><!--
  ~ Copyright (C) 2025 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:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    >
    <LinearLayout
        android:id="@+id/metric_view_0"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:visibility="gone"
        android:layout_marginEnd="@dimen/notification_expanded_metric_margin"
        android:layout_weight="1">
        <TextView
            android:id="@+id/metric_label_0"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/NotificationExpandedMetricLabel"
            />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <com.android.internal.widget.NotificationMetricAdaptiveTextView
                android:id="@+id/metric_value_0"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/NotificationExpandedMetricValue"
                />
            <com.android.internal.widget.NotificationMetricAdaptiveChronometer
                android:id="@+id/metric_chronometer_0"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"
                style="@style/NotificationExpandedMetricValue"
                />
        </LinearLayout>
    </LinearLayout>
    <LinearLayout
        android:id="@+id/metric_view_1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:visibility="gone"
        android:layout_weight="1"
        android:layout_marginEnd="@dimen/notification_expanded_metric_margin">
        <TextView
            android:id="@+id/metric_label_1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/NotificationExpandedMetricLabel"
            />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <com.android.internal.widget.NotificationMetricAdaptiveTextView
                android:id="@+id/metric_value_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/NotificationExpandedMetricValue"
                />
            <com.android.internal.widget.NotificationMetricAdaptiveChronometer
                android:id="@+id/metric_chronometer_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"
                style="@style/NotificationExpandedMetricValue"
                />
        </LinearLayout>
    </LinearLayout>
    <LinearLayout
        android:id="@+id/metric_view_2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:visibility="gone"
        android:layout_weight="1">
        <TextView
            android:id="@+id/metric_label_2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/NotificationExpandedMetricLabel"
            />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <com.android.internal.widget.NotificationMetricAdaptiveTextView
                android:id="@+id/metric_value_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="1"
                style="@style/NotificationExpandedMetricValue"
                />
            <com.android.internal.widget.NotificationMetricAdaptiveChronometer
                android:id="@+id/metric_chronometer_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"
                style="@style/NotificationExpandedMetricValue"
                />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>
