Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Does anyone know how to modify the position of the Cordova splash screen spinner? I have checked the documentation and couldn't find any information.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
317 views
Welcome To Ask or Share your Answers For Others

1 Answer

For android, a similar fix is in

platforms/android/src/org/apache/cordova/splashscreen/SplashScreen.java

in spinnerStart() change the Gravity value, and RelativeLayout rule.

e.g. to put spinner at the bottom:

change

centeredLayout.setGravity(Gravity.CENTER);

to

centeredLayout.setGravity(Gravity.BOTTOM);

and change

layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);

to

layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);

List RelativeLayout options: https://developer.android.com/reference/android/widget/RelativeLayout.html

List of Gravity options: https://developer.android.com/reference/android/view/Gravity.html

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...