| Línea 87... |
Línea 87... |
| 87 |
|
87 |
|
| 88 |
@Override
|
88 |
@Override
|
| 89 |
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
89 |
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
| 90 |
super.onViewCreated(view, savedInstanceState);
|
90 |
super.onViewCreated(view, savedInstanceState);
|
| 91 |
iTwoGetSkills = (ITwoGetSkills) getActivity();
|
91 |
iTwoGetSkills = (ITwoGetSkills) getActivity();
|
| 92 |
mProgressBar = (ProgressBar) getView().findViewById(R.id.signin_progress_bar);
|
92 |
mProgressBar = getView().findViewById(R.id.signin_progress_bar);
|
| 93 |
mEditTextEmail = (EditText) getView().findViewById(R.id.signin_edittext_email);
|
93 |
mEditTextEmail = getView().findViewById(R.id.signin_edittext_email);
|
| 94 |
//mEditTextEmail.setText("santiago.olivera@leaderslinked.com");
|
94 |
//mEditTextEmail.setText("santiago.olivera@leaderslinked.com");
|
| 95 |
//mEditTextEmail.setText("efrain.yanez@leaderslinked.com");
|
95 |
//mEditTextEmail.setText("efrain.yanez@leaderslinked.com");
|
| 96 |
//mEditTextEmail.setText("snof@adinet.com.uy");
|
96 |
//mEditTextEmail.setText("snof@adinet.com.uy");
|
| Línea 397... |
Línea 397... |
| 397 |
ResultCount resultCount = iTwoGetSkills.getDatabase().getCapsuleDao().getCount();
|
397 |
ResultCount resultCount = iTwoGetSkills.getDatabase().getCapsuleDao().getCount();
|
| 398 |
String message = resultCount.getCount() == 1
|
398 |
String message = resultCount.getCount() == 1
|
| 399 |
? "Hay 1 cápsula nueva disponible"
|
399 |
? "Hay 1 cápsula nueva disponible"
|
| 400 |
: "Hay " + resultCount.getCount() + " cápsulas disponible";
|
400 |
: "Hay " + resultCount.getCount() + " cápsulas disponible";
|
| Línea 401... |
Línea 401... |
| 401 |
|
401 |
|
| Línea 402... |
Línea 402... |
| 402 |
// iTwoGetSkills.showMessageSnackBarWithClose(message);
|
402 |
iTwoGetSkills.showMessageSnackBarWithClose(message);
|
| 403 |
|
403 |
|
| 404 |
|
404 |
|