ソースを参照

Apply topMargin only if defined

Guy Carmeli 6 年 前
コミット
93a448fe95
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      lib/android/app/src/main/java/com/reactnativenavigation/presentation/OptionsPresenter.java

+ 1
- 1
lib/android/app/src/main/java/com/reactnativenavigation/presentation/OptionsPresenter.java ファイルの表示

@@ -62,7 +62,7 @@ public class OptionsPresenter {
62 62
     }
63 63
 
64 64
     private void applyTopMargin(View view, Options options) {
65
-        if (view.getLayoutParams() instanceof MarginLayoutParams) {
65
+        if (view.getLayoutParams() instanceof MarginLayoutParams && options.layout.topMargin.hasValue()) {
66 66
             ((MarginLayoutParams) view.getLayoutParams()).topMargin = options.layout.topMargin.get(0);
67 67
         }
68 68
     }