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 xmlns:tools="http://schemas.android.com/tools" |
6 android:layout_width="match_parent" | 6 android:layout_width="match_parent" |
7 android:layout_height="match_parent"> | 7 android:layout_height="match_parent"> |
8 | 8 |
9 <android.opengl.GLSurfaceView | 9 <org.appspot.apprtc.PercentFrameLayout |
10 android:id="@+id/glview_call" | 10 android:id="@+id/remote_video_layout" |
11 android:layout_width="match_parent" | 11 android:layout_width="match_parent" |
12 android:layout_height="match_parent" /> | 12 android:layout_height="match_parent"> |
13 <org.webrtc.SurfaceViewRenderer | |
14 android:id="@+id/remote_video_view" | |
perkj_webrtc
2015/09/21 15:03:53
indentation
magjed_webrtc
2015/09/22 07:15:46
Done.
| |
15 android:layout_width="wrap_content" | |
16 android:layout_height="wrap_content" /> | |
17 </org.appspot.apprtc.PercentFrameLayout> | |
18 | |
19 <org.appspot.apprtc.PercentFrameLayout | |
20 android:id="@+id/local_video_layout" | |
21 android:layout_width="match_parent" | |
22 android:layout_height="match_parent"> | |
23 <org.webrtc.SurfaceViewRenderer | |
24 android:id="@+id/local_video_view" | |
25 android:layout_width="wrap_content" | |
26 android:layout_height="wrap_content" /> | |
27 </org.appspot.apprtc.PercentFrameLayout> | |
13 | 28 |
14 <FrameLayout | 29 <FrameLayout |
15 android:id="@+id/call_fragment_container" | 30 android:id="@+id/call_fragment_container" |
16 android:layout_width="match_parent" | 31 android:layout_width="match_parent" |
17 android:layout_height="match_parent" /> | 32 android:layout_height="match_parent" /> |
18 <FrameLayout | 33 <FrameLayout |
19 android:id="@+id/hud_fragment_container" | 34 android:id="@+id/hud_fragment_container" |
20 android:layout_width="match_parent" | 35 android:layout_width="match_parent" |
21 android:layout_height="match_parent" /> | 36 android:layout_height="match_parent" /> |
22 | 37 |
23 </RelativeLayout> | 38 </RelativeLayout> |
OLD | NEW |