1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:fitsSystemWindows="true" 4 android:orientation="vertical" 5 android:layout_width="match_parent" 6 android:layout_height="wrap_content"> 7 <TextView 8 android:text="@string/profileLabel" 9 android:layout_width="match_parent" 10 android:layout_height="wrap_content"/> 11 12 <TextView 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content" 15 android:id="@+id/uap_profileNameTx" 16 android:paddingLeft="16dp"/> 17 18 <TextView 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:id="@+id/uap_profileDescriptionTx" 22 android:paddingLeft="16dp"/> 23 24 <TextView 25 android:text="@string/connectedPeripheral" 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content"/> 28 29 <TextView 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:id="@+id/uap_peripheralNameTx" 33 android:paddingLeft="16dp"/> 34 35</LinearLayout>