@@ -802,7 +802,7 @@ public static Pair<Dialog, LinearLayout> createCustomDialog(
802
802
ViewGroup .LayoutParams .MATCH_PARENT ,
803
803
ViewGroup .LayoutParams .WRAP_CONTENT
804
804
);
805
- layoutParams .setMargins (0 , 0 , 0 , dip8 );
805
+ layoutParams .setMargins (0 , 0 , 0 , dip16 );
806
806
titleView .setLayoutParams (layoutParams );
807
807
mainLayout .addView (titleView );
808
808
}
@@ -833,7 +833,6 @@ public static Pair<Dialog, LinearLayout> createCustomDialog(
833
833
ViewGroup .LayoutParams .MATCH_PARENT ,
834
834
ViewGroup .LayoutParams .WRAP_CONTENT
835
835
);
836
- messageParams .setMargins (dip8 , dip8 , dip8 , dip16 );
837
836
messageView .setLayoutParams (messageParams );
838
837
contentContainer .addView (messageView );
839
838
}
@@ -858,7 +857,6 @@ public static Pair<Dialog, LinearLayout> createCustomDialog(
858
857
LinearLayout .LayoutParams .MATCH_PARENT ,
859
858
LinearLayout .LayoutParams .WRAP_CONTENT
860
859
);
861
- editTextParams .setMargins (0 , dip8 , 0 , dip16 );
862
860
contentContainer .addView (editText , editTextParams );
863
861
}
864
862
@@ -870,7 +868,7 @@ public static Pair<Dialog, LinearLayout> createCustomDialog(
870
868
LinearLayout .LayoutParams .MATCH_PARENT ,
871
869
LinearLayout .LayoutParams .WRAP_CONTENT
872
870
);
873
- buttonContainerParams .setMargins (0 , dip8 , 0 , 0 );
871
+ buttonContainerParams .setMargins (0 , dip16 , 0 , 0 );
874
872
buttonContainer .setLayoutParams (buttonContainerParams );
875
873
876
874
// Lists to track buttons.
0 commit comments