@@ -275,20 +275,18 @@ private void doSettingsMenuInject_10_1_38(final Activity activity) {
275275 itemHlinearLayout .setClickable (true );
276276 itemHlinearLayout .setOnClickListener (view -> new SettingsView (activity ).showInDialog ());
277277
278- int defHPadding = DpUtils .dip2px (activity , 15 );
279-
280278 TextView itemNameText = new TextView (activity );
281279 StyleUtils .apply (itemNameText );
282280 itemNameText .setText (Lang .getString (R .id .app_settings_name ));
283281 itemNameText .setGravity (Gravity .CENTER_VERTICAL );
284- itemNameText .setPadding (defHPadding , 0 , 0 , 0 );
282+ itemNameText .setPadding (DpUtils . dip2px ( activity , 12 ) , 0 , 0 , 0 );
285283 itemNameText .setTextSize (TypedValue .COMPLEX_UNIT_DIP , StyleUtils .TEXT_SIZE_BIG );
286284
287285 TextView itemSummerText = new TextView (activity );
288286 StyleUtils .apply (itemSummerText );
289287 itemSummerText .setText (BuildConfig .VERSION_NAME );
290288 itemSummerText .setGravity (Gravity .CENTER_VERTICAL );
291- itemSummerText .setPadding (0 , 0 , defHPadding , 0 );
289+ itemSummerText .setPadding (0 , 0 , DpUtils . dip2px ( activity , 18 ) , 0 );
292290 itemSummerText .setTextColor (0xFF999999 );
293291
294292 //try use Alipay style
@@ -536,5 +534,6 @@ private void hidePreviousPayDialog() {
536534 if (dialog != null ) {
537535 dialog .dismiss ();
538536 }
537+ mFingerPrintAlertDialog = null ;
539538 }
540539}
0 commit comments