Cordova splash screen change the position of the spinner?

前端 未结 3 403
臣服心动
臣服心动 2020-12-18 06:42

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.

3条回答
  •  执笔经年
    2020-12-18 07:39

    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

提交回复
热议问题