Created
April 16, 2017 09:20
-
-
Save oatpano/7476bdce472720de621167aba888129a 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
| 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