Created
January 31, 2018 17:26
-
-
Save deviantfero/3da6ba7116ffa9751f75b7505c9c0fe6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setContentView(R.layout.activity_video_call) | |
statusTextView = findViewById(R.id.status_text) | |
localVideoView = findViewById(R.id.pip_video) | |
remoteVideoView = findViewById(R.id.remote_video) | |
val hangup : ImageButton = findViewById(R.id.hangup_button) | |
hangup.setOnClickListener { | |
finish() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment