1<?xml version="1.0" encoding="utf-8"?> 2 3<RelativeLayout 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent"> 7 8 <ImageButton 9 android:id="@+id/button_toggle_debug" 10 android:background="@android:drawable/ic_menu_info_details" 11 android:contentDescription="@string/toggle_debug" 12 android:layout_alignParentBottom="true" 13 android:layout_alignParentStart="true" 14 android:layout_width="48dp" 15 android:layout_height="48dp"/> 16 17 <TextView 18 android:id="@+id/hud_stat_call" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:layout_alignParentEnd="true" 22 android:textStyle="bold" 23 android:textColor="#C000FF00" 24 android:textSize="12sp" 25 android:layout_margin="8dp"/> 26 27</RelativeLayout> 28