Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save oatpano/7476bdce472720de621167aba888129a to your computer and use it in GitHub Desktop.

Select an option

Save oatpano/7476bdce472720de621167aba888129a to your computer and use it in GitHub Desktop.
public void onResponse(User user, Retrofit retrofit) {
//200
String data = "Github Name :" + user.getName() +
"\nBlog :"+user.getฺBlog() +
"\nCompany Name :" + user.getCompany();
tvResult.setText(data);
//แสดง layout result
layoutForm.setVisibility(View.GONE);
layoutResult.setVisibility(View.VISIBLE);
layoutProgress.setVisibility(View.GONE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment