| Línea 109... |
Línea 109... |
| 109 |
|
109 |
|
| Línea 110... |
Línea 110... |
| 110 |
|
110 |
|
| 111 |
mUserProfileViewModel.getUserProfileViewDataMutableLiveData().observe(requireActivity(),UserProfileArrayListUpdateObserver);
|
111 |
mUserProfileViewModel.getUserProfileViewDataMutableLiveData().observe(requireActivity(),UserProfileArrayListUpdateObserver);
|
| 112 |
|
112 |
|
| Línea 113... |
Línea 113... |
| 113 |
|
113 |
|
| 114 |
listView = (RecyclerView) getView().findViewById(R.id.fragment_userprofile_listview);
|
114 |
listView = getView().findViewById(R.id.fragment_userprofile_listview);
|
| 115 |
listView.setAdapter(adapter);
|
115 |
listView.setAdapter(adapter);
|
| 116 |
listView.setLayoutManager(layoutManager);
|
116 |
listView.setLayoutManager(layoutManager);
|
| 117 |
|
117 |
|
| Línea 157... |
Línea 157... |
| 157 |
|
157 |
|
| 158 |
Glide.with(requireActivity()).load(url)
|
158 |
Glide.with(requireActivity()).load(url)
|
| 159 |
.apply(options)
|
159 |
.apply(options)
|
| Línea 160... |
Línea 160... |
| 160 |
.into(headerUserImage);
|
160 |
.into(headerUserImage);
|
| 161 |
|
161 |
|
| 162 |
headerUserName = (TextView) getView().findViewById(R.id.fragment_userprofile_header_user_name);
|
162 |
headerUserName = getView().findViewById(R.id.fragment_userprofile_header_user_name);
|
| 163 |
headerUserName.setText((iTwoGetSkills.getPreference().getFirstName() + " " + iTwoGetSkills.getPreference().getLastName()).trim());
|
163 |
headerUserName.setText((iTwoGetSkills.getPreference().getFirstName() + " " + iTwoGetSkills.getPreference().getLastName()).trim());
|
| Línea 164... |
Línea 164... |
| 164 |
headerUserEmail = (TextView) getView().findViewById(R.id.fragment_userprofile_header_header_user_email);
|
164 |
headerUserEmail = getView().findViewById(R.id.fragment_userprofile_header_header_user_email);
|
| 165 |
headerUserEmail.setText(iTwoGetSkills.getPreference().getEmail());
|
165 |
headerUserEmail.setText(iTwoGetSkills.getPreference().getEmail());
|