Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: webrtc/examples/androidapp/res/layout/activity_call.xml

Issue 1257043004: AppRTCDemo: Render each video in a separate SurfaceView (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change license header for PercentFrameLayout.java Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « talk/libjingle.gyp ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
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>
OLDNEW
« no previous file with comments | « talk/libjingle.gyp ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698