| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 | |
| 3 <RelativeLayout | |
| 4 xmlns:android="http://schemas.android.com/apk/res/android" | |
| 5 xmlns:tools="http://schemas.android.com/tools" | |
| 6 android:layout_width="match_parent" | |
| 7 android:layout_height="match_parent"> | |
| 8 | |
| 9 <android.opengl.GLSurfaceView | |
| 10 android:id="@+id/glview_call" | |
| 11 android:layout_width="match_parent" | |
| 12 android:layout_height="match_parent" /> | |
| 13 | |
| 14 <FrameLayout | |
| 15 android:id="@+id/call_fragment_container" | |
| 16 android:layout_width="match_parent" | |
| 17 android:layout_height="match_parent" /> | |
| 18 <FrameLayout | |
| 19 android:id="@+id/hud_fragment_container" | |
| 20 android:layout_width="match_parent" | |
| 21 android:layout_height="match_parent" /> | |
| 22 | |
| 23 </RelativeLayout> | |
| OLD | NEW |