| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <RelativeLayout | 3 <RelativeLayout |
| 4 xmlns:android="http://schemas.android.com/apk/res/android" | 4 xmlns:android="http://schemas.android.com/apk/res/android" |
| 5 xmlns:tools="http://schemas.android.com/tools" | 5 android:layout_width="match_parent" |
| 6 android:layout_width="match_parent" | 6 android:layout_height="match_parent"> |
| 7 android:layout_height="match_parent"> | |
| 8 | 7 |
| 9 <ImageButton | 8 <ImageButton |
| 10 android:id="@+id/button_toggle_debug" | 9 android:id="@+id/button_toggle_debug" |
| 11 android:background="@android:drawable/ic_menu_info_details" | 10 android:background="@android:drawable/ic_menu_info_details" |
| 12 android:contentDescription="@string/toggle_debug" | 11 android:contentDescription="@string/toggle_debug" |
| 13 android:layout_alignParentBottom="true" | 12 android:layout_alignParentBottom="true" |
| 14 android:layout_alignParentStart="true" | 13 android:layout_alignParentStart="true" |
| 15 android:layout_width="48dp" | 14 android:layout_width="48dp" |
| 16 android:layout_height="48dp"/> | 15 android:layout_height="48dp"/> |
| 17 | 16 |
| 18 <TextView | 17 <TextView |
| 19 android:id="@+id/encoder_stat_call" | 18 android:id="@+id/encoder_stat_call" |
| 20 android:layout_width="wrap_content" | 19 android:layout_width="wrap_content" |
| 21 android:layout_height="wrap_content" | 20 android:layout_height="wrap_content" |
| 22 android:layout_alignParentEnd="true" | 21 android:layout_alignParentEnd="true" |
| 23 android:textStyle="bold" | 22 android:textStyle="bold" |
| 24 android:textColor="#C000FF00" | 23 android:textColor="#C000FF00" |
| 25 android:textSize="12dp" | 24 android:textSize="12sp" |
| 26 android:layout_margin="8dp"/> | 25 android:layout_margin="8dp"/> |
| 27 | 26 |
| 28 <TableLayout | 27 <TableLayout |
| 29 android:id="@+id/hudview_container" | 28 android:id="@+id/hudview_container" |
| 30 android:layout_width="match_parent" | 29 android:layout_width="match_parent" |
| 31 android:layout_height="match_parent"> | 30 android:layout_height="match_parent"> |
| 32 | 31 |
| 33 <TableRow> | 32 <TableRow> |
| 34 <TextView | 33 <TextView |
| 35 android:id="@+id/hud_stat_bwe" | 34 android:id="@+id/hud_stat_bwe" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 66 android:layout_width="wrap_content" | 65 android:layout_width="wrap_content" |
| 67 android:layout_height="wrap_content" | 66 android:layout_height="wrap_content" |
| 68 android:padding="2dip" | 67 android:padding="2dip" |
| 69 android:alpha="0.4" | 68 android:alpha="0.4" |
| 70 android:background="@android:color/white" | 69 android:background="@android:color/white" |
| 71 android:textColor="@android:color/black" /> | 70 android:textColor="@android:color/black" /> |
| 72 </TableRow> | 71 </TableRow> |
| 73 </TableLayout> | 72 </TableLayout> |
| 74 | 73 |
| 75 </RelativeLayout> | 74 </RelativeLayout> |
| OLD | NEW |