@@ -534,6 +534,7 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
534
534
Object navColor = valueForKey (uiconfig , "navColor" );
535
535
Object navText = valueForKey (uiconfig , "navText" );
536
536
Object navTextColor = valueForKey (uiconfig , "navTextColor" );
537
+ Object navTextBold = valueForKey (uiconfig , "navTextBold" );
537
538
Object navReturnImgPath = valueForKey (uiconfig , "navReturnImgPath" );
538
539
Object navHidden = valueForKey (uiconfig , "navHidden" );
539
540
Object navReturnBtnHidden = valueForKey (uiconfig , "navReturnBtnHidden" );
@@ -545,22 +546,27 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
545
546
Object logoOffsetY = valueForKey (uiconfig , "logoOffsetY" );
546
547
Object logoOffsetX = valueForKey (uiconfig , "logoOffsetX" );
547
548
Object logoHidden = valueForKey (uiconfig , "logoHidden" );
549
+ Object logoOffsetBottomY = valueForKey (uiconfig , "logoOffsetBottomY" );
548
550
549
551
Object numberColor = valueForKey (uiconfig , "numberColor" );
550
552
Object numberSize = valueForKey (uiconfig , "numberSize" );
553
+ Object numberTextBold = valueForKey (uiconfig , "numberTextBold" );
551
554
Object numFieldOffsetY = valueForKey (uiconfig , "numFieldOffsetY" );
552
555
Object numFieldOffsetX = valueForKey (uiconfig , "numFieldOffsetX" );
556
+ Object numberFieldOffsetBottomY = valueForKey (uiconfig , "numberFieldOffsetBottomY" );
553
557
Object numberFieldWidth = valueForKey (uiconfig , "numberFieldWidth" );
554
558
Object numberFieldHeight = valueForKey (uiconfig , "numberFieldHeight" );
555
559
556
560
557
561
Object logBtnText = valueForKey (uiconfig , "logBtnText" );
558
562
Object logBtnOffsetY = valueForKey (uiconfig , "logBtnOffsetY" );
559
563
Object logBtnOffsetX = valueForKey (uiconfig , "logBtnOffsetX" );
564
+ Object logBtnBottomOffsetY = valueForKey (uiconfig , "logBtnBottomOffsetY" );
560
565
Object logBtnWidth = valueForKey (uiconfig , "logBtnWidth" );
561
566
Object logBtnHeight = valueForKey (uiconfig , "logBtnHeight" );
562
567
Object logBtnTextSize = valueForKey (uiconfig , "logBtnTextSize" );
563
568
Object logBtnTextColor = valueForKey (uiconfig , "logBtnTextColor" );
569
+ Object logBtnTextBold = valueForKey (uiconfig , "logBtnTextBold" );
564
570
Object logBtnBackgroundPath = valueForKey (uiconfig , "logBtnBackgroundPath" );
565
571
566
572
Object uncheckedImgPath = valueForKey (uiconfig , "uncheckedImgPath" );
@@ -578,6 +584,7 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
578
584
Object privacyTextCenterGravity = valueForKey (uiconfig , "privacyTextCenterGravity" );
579
585
Object privacyText = valueForKey (uiconfig , "privacyText" );
580
586
Object privacyTextSize = valueForKey (uiconfig , "privacyTextSize" );
587
+ Object privacyTextBold = valueForKey (uiconfig , "privacyTextBold" );
581
588
Object privacyCheckboxHidden = valueForKey (uiconfig , "privacyCheckboxHidden" );
582
589
Object privacyCheckboxSize = valueForKey (uiconfig , "privacyCheckboxSize" );
583
590
Object privacyWithBookTitleMark = valueForKey (uiconfig , "privacyWithBookTitleMark" );
@@ -590,10 +597,13 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
590
597
Object sloganBottomOffsetY = valueForKey (uiconfig , "sloganBottomOffsetY" );
591
598
Object sloganTextSize = valueForKey (uiconfig , "sloganTextSize" );
592
599
Object sloganHidden = valueForKey (uiconfig , "sloganHidden" );
600
+ Object sloganTextBold = valueForKey (uiconfig , "sloganTextBold" );
601
+ Object privacyUnderlineText = valueForKey (uiconfig , "privacyUnderlineText" );
593
602
594
603
Object privacyNavColor = valueForKey (uiconfig , "privacyNavColor" );
595
604
Object privacyNavTitleTextColor = valueForKey (uiconfig , "privacyNavTitleTextColor" );
596
605
Object privacyNavTitleTextSize = valueForKey (uiconfig , "privacyNavTitleTextSize" );
606
+ Object privacyNavTitleTextBold = valueForKey (uiconfig , "privacyNavTitleTextBold" );
597
607
Object privacyNavReturnBtnPath = valueForKey (uiconfig , "privacyNavReturnBtnImage" );
598
608
Object privacyNavTitleTitle1 = valueForKey (uiconfig , "privacyNavTitleTitle1" );
599
609
Object privacyNavTitleTitle2 = valueForKey (uiconfig , "privacyNavTitleTitle2" );
@@ -720,6 +730,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
720
730
if (navTextColor != null ) {
721
731
builder .setNavTextColor (exchangeObject (navTextColor ));
722
732
}
733
+ if (navTextBold != null ) {
734
+ builder .setNavTextBold ((Boolean ) navTextBold );
735
+ }
723
736
if (navReturnImgPath != null ) {
724
737
builder .setNavReturnImgPath ((String ) navReturnImgPath );
725
738
}
@@ -746,8 +759,14 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
746
759
builder .setLogoImgPath ((String ) logoImgPath );
747
760
}
748
761
}
762
+ if (logoOffsetBottomY != null ) {
763
+ builder .setLogoOffsetBottomY ((Integer ) logoOffsetBottomY );
764
+ }
749
765
750
766
/************** number ***************/
767
+ if (numberFieldOffsetBottomY != null ) {
768
+ builder .setNumberFieldOffsetBottomY ((Integer ) numberFieldOffsetBottomY );
769
+ }
751
770
if (numFieldOffsetY != null ) {
752
771
builder .setNumFieldOffsetY ((Integer ) numFieldOffsetY );
753
772
}
@@ -766,6 +785,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
766
785
if (numberSize != null ) {
767
786
builder .setNumberSize ((Number ) numberSize );
768
787
}
788
+ if (numberTextBold != null ) {
789
+ builder .setNumberTextBold ((Boolean ) numberTextBold );
790
+ }
769
791
770
792
771
793
/************** slogan ***************/
@@ -775,6 +797,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
775
797
if (sloganOffsetX != null ) {
776
798
builder .setSloganOffsetX ((Integer ) sloganOffsetX );
777
799
}
800
+ if (sloganBottomOffsetY != null ) {
801
+ builder .setSloganBottomOffsetY ((Integer ) sloganBottomOffsetY );
802
+ }
778
803
if (sloganTextSize != null ) {
779
804
builder .setSloganTextSize ((Integer ) sloganTextSize );
780
805
}
@@ -784,6 +809,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
784
809
if (sloganHidden != null ) {
785
810
builder .setSloganHidden ((Boolean ) sloganHidden );
786
811
}
812
+ if (sloganTextBold != null ) {
813
+ builder .setSloganTextBold ((Boolean ) sloganTextBold );
814
+ }
787
815
788
816
789
817
/************** login btn ***************/
@@ -793,6 +821,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
793
821
if (logBtnOffsetX != null ) {
794
822
builder .setLogBtnOffsetX ((Integer ) logBtnOffsetX );
795
823
}
824
+ if (logBtnBottomOffsetY != null ) {
825
+ builder .setLogBtnBottomOffsetY ((Integer ) logBtnBottomOffsetY );
826
+ }
796
827
if (logBtnWidth != null ) {
797
828
builder .setLogBtnWidth ((Integer ) logBtnWidth );
798
829
}
@@ -808,6 +839,9 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
808
839
if (logBtnTextColor != null ) {
809
840
builder .setLogBtnTextColor (exchangeObject (logBtnTextColor ));
810
841
}
842
+ if (logBtnTextBold != null ) {
843
+ builder .setLogBtnTextBold ((Boolean ) logBtnTextBold );
844
+ }
811
845
if (logBtnBackgroundPath != null ) {
812
846
int res_id = getResourceByReflect ((String ) logBtnBackgroundPath );
813
847
if (res_id > 0 ) {
@@ -857,6 +891,12 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
857
891
privacyTextList .addAll (Arrays .asList ("" , "" , "" , "" ));
858
892
builder .setPrivacyText (privacyTextList .get (0 ), privacyTextList .get (1 ));
859
893
}
894
+ if (privacyTextBold != null ) {
895
+ builder .setPrivacyTextBold ((Boolean ) privacyTextBold );
896
+ }
897
+ if (privacyUnderlineText != null ) {
898
+ builder .setPrivacyUnderlineText ((Boolean ) privacyUnderlineText );
899
+ }
860
900
861
901
builder .setPrivacyTextCenterGravity ((Boolean ) privacyTextCenterGravity );
862
902
builder .setPrivacyWithBookTitleMark ((Boolean ) privacyWithBookTitleMark );
@@ -919,6 +959,10 @@ private void layoutOriginOuthView(Map uiconfig, JVerifyUIConfig.Builder builder)
919
959
// builder.setAppPrivacyNavTitle2((String) privacyNavTitleTitle2);
920
960
// }
921
961
962
+ if (privacyNavTitleTextBold != null ) {
963
+ builder .setPrivacyNavTitleTextBold ((Boolean ) privacyNavTitleTextBold );
964
+ }
965
+
922
966
if (privacyNavReturnBtnPath != null ) {
923
967
int res_id = getResourceByReflect ((String ) privacyNavReturnBtnPath );
924
968
if (res_id > 0 ) {
0 commit comments