xref: /aosp_15_r20/frameworks/base/tests/UsageStatsTest/res/layout/row_item.xml (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="horizontal"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:paddingLeft="16dp"
7    android:paddingRight="16dp">
8
9    <TextView android:id="@android:id/text1"
10        android:layout_width="wrap_content"
11        android:layout_height="wrap_content"
12        android:layout_weight="1"
13        android:textStyle="bold"/>
14
15    <TextView android:id="@android:id/text2"
16        android:layout_width="wrap_content"
17        android:layout_height="wrap_content"/>
18</LinearLayout>
19