Línea 33... |
Línea 33... |
33 |
private Button buttonGetStarted;
|
33 |
private Button buttonGetStarted;
|
34 |
private ITwoGetSkills iTwoGetSkills;
|
34 |
private ITwoGetSkills iTwoGetSkills;
|
35 |
LottieAnimationView figura; int stepper=0;
|
35 |
LottieAnimationView figura; int stepper=0;
|
36 |
private TextView appname,introtext,signin,derechos;
|
36 |
private TextView appname,introtext,signin,derechos;
|
37 |
AnimationDrawable rocketAnimation;
|
37 |
AnimationDrawable rocketAnimation;
|
38 |
ImageView rocketImage, lamp,buho;
|
38 |
ImageView minisplash, lamp,buho;
|
39 |
ConstraintLayout fondosplash;
|
39 |
ConstraintLayout fondosplash;
|
Línea 40... |
Línea 40... |
40 |
|
40 |
|
41 |
public IntroFragment() {
|
41 |
public IntroFragment() {
|
42 |
// Required empty public constructor
|
42 |
// Required empty public constructor
|
Línea 65... |
Línea 65... |
65 |
|
65 |
|
66 |
@Override
|
66 |
@Override
|
67 |
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
67 |
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
Línea 68... |
Línea -... |
68 |
super.onViewCreated(view, savedInstanceState);
|
- |
|
69 |
|
68 |
super.onViewCreated(view, savedInstanceState);
|
- |
|
69 |
|
- |
|
70 |
fondosplash=view.findViewById(R.id.fondosplash);
|
- |
|
71 |
fondosplash.setBackgroundResource(R.drawable.ic_splash);
|
70 |
|
72 |
minisplash=view.findViewById(R.id.minisplash);
|
71 |
fondosplash=view.findViewById(R.id.fondosplash);
|
73 |
minisplash.setVisibility(View.VISIBLE);
|
72 |
lamp=view.findViewById(R.id.imageView5);
|
74 |
lamp=view.findViewById(R.id.imageView5);
|
73 |
buho=view.findViewById(R.id.imageView6);
|
75 |
buho=view.findViewById(R.id.imageView6);
|
74 |
appname=view.findViewById(R.id.textView20);
|
76 |
appname=view.findViewById(R.id.textView20);
|
75 |
buttonGetStarted = getView().findViewById(R.id.intro_button_get_started);
|
77 |
buttonGetStarted = getView().findViewById(R.id.intro_button_get_started);
|
- |
|
78 |
introtext = getView().findViewById(R.id.intro_textview_title);
|
- |
|
79 |
signin = getView().findViewById(R.id.signin_textview_communique_easily);
|
- |
|
80 |
|
- |
|
81 |
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
|
- |
|
82 |
@Override
|
- |
|
83 |
public void run() {
|
- |
|
84 |
|
76 |
introtext = getView().findViewById(R.id.intro_textview_title);
|
85 |
fondosplash.setBackgroundResource(R.drawable.ic_winbackground);
|
77 |
signin = getView().findViewById(R.id.signin_textview_communique_easily);
|
86 |
minisplash.setVisibility(View.GONE);
|
78 |
lamp.setVisibility(View.VISIBLE);
|
87 |
lamp.setVisibility(View.VISIBLE);
|
79 |
buho.setVisibility(View.VISIBLE);
|
88 |
buho.setVisibility(View.VISIBLE);
|
80 |
appname.setVisibility(View.VISIBLE);
|
89 |
appname.setVisibility(View.VISIBLE);
|
81 |
introtext.setVisibility(View.VISIBLE);
|
90 |
introtext.setVisibility(View.VISIBLE);
|
- |
|
91 |
buttonGetStarted.setVisibility(View.VISIBLE); //cesa.setVisibility(View.VISIBLE);
|
- |
|
92 |
signin.setVisibility(View.VISIBLE);
|
- |
|
93 |
}
|
Línea 82... |
Línea 94... |
82 |
buttonGetStarted.setVisibility(View.VISIBLE); //cesa.setVisibility(View.VISIBLE);
|
94 |
}, 4000);
|
83 |
signin.setVisibility(View.VISIBLE);
|
95 |
|
84 |
|
96 |
|