단순 시청 앱 만들기(Android) (초안)
단순 시청 앱 만들기(Android)
레이아웃 작업
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray"
android:layout_alignParentBottom="false"
android:layout_weight="2">
<org.webrtc.SurfaceViewRenderer
android:id="@+id/remote_video_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<org.webrtc.SurfaceViewRenderer
android:id="@+id/local_video_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>방송
그 외 주요 메소드들
Callback에 대하여
단순 통화 앱 만들기(Android)
레이아웃 작업
통화
통화 목록 검색
그 외 주요 메소드들
Callback에 대하여
Last updated
Was this helpful?