Getting Started with HTTP on Android: Retrofit Android Tutorial using Kotlin #1.1

preview_player
Показать описание

Kotlin Android Tutorial. In this video, explore what are various terms such as HTTP requests, HTTP response, Retrofit, web server, and web services. Understand the concepts using Facebook app example.

.
Please donate and support my work
(If you think my free tutorials are better than paid ones :)

Free Programming courses:

Free Flutter course:

Free Android courses:

More free programming courses:

Check out my website:

Let's get in touch! [Sriyank Siddhartha]

---- Thank you for your love and support ----
Рекомендации по теме
Комментарии
Автор

You teach everything very well.. Thank you so much for this course ❤️

pravinmane
Автор

Your videos make my life easier !! :D Thanks a lot

rahmakthiri
Автор

Excellent video, very didactic, thanks for your dedication in preparing the classes, greetings from Caracas, Venezuela

VenewebTV
Автор

Awesome teaching, You make topics very clear in short videos that will help us to concentrate better, Seriously i loved your teaching. Keep going we support you. One more request, For everyone the most basic in a project is robust Project base, Can you please make an session for creating Base using latest tech(MVVM, Dagger or KOIN, Retrofit,Livedata,RxJava or CoRoutine, DataBinding), Need to follow single place error handling. Most people need this...And for begginners also get an idea how our Base should look like. Thank you so much for all videos.

naveenshriyan
Автор

Loved your Teaching Skills.. Keep Going.. :)

thecodersintegrity
Автор

Great Video, Guess what " I'm feeling lucky"!

rohitjoshi
Автор

When the video ends I need to move to another activity. I want to dismiss the view that plays the video, only after the video ends. I tried doing it but it ends up playing the same video again.


import static


public class QuestionVideoActivity extends AppCompatActivity {
private static final long TIME_OUT_FRAME = 10000;
private YouTubePlayerView youTubePlayerView;
private YouTubePlayer youTubePlayer;
private String currentVideoId;
private String question_id;
private String msg;


@Override
protected void onCreate(Bundle savedInstanceState) {



getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,


new Handler().postDelayed(new Runnable() {

/*
* Showing splash screen with a timer. This will be useful when you
* want to show case your app logo / company
*/

@Override
public void run() {
// This method will be executed once the timer is over
// Start your app main activity
// close this activity

}
}, TIME_OUT_FRAME);


question_id = Constans.QUESTION_ID;
Intent intent = getIntent();
msg =
youTubePlayerView =














YouTubePlayerInitListener() {
@Override

youTubePlayer.addListener(new {
@Override
public void onReady() {
youTubePlayer.cueVideo(msg, 0f);
if (youTubePlayer != null) {
youTubePlayer.play();
} else {
youTubePlayer.pause();
}
}
});
}
}, true);

}

@Override
public void onDestroy() {
super.onDestroy();
youTubePlayerView.release();
}

@Override
protected void onStop() {
super.onStop();
if (youTubePlayerView == null) {
// close this activity
finish();
}
}
}

navasar
Автор

How to upload videos to API through Retrofit? Is there any tutorial?

bhaktibirachan
Автор

This course is for kotlin, Will you upload the retrofit fundamentals course with java too???

AsifAhmad-oxyq
Автор

can you help to post this data to server {"Dummy":[{"name":"sonu", "id":7}]}

onlinegamingshorts