Procházet zdrojové kódy

Clear component when setting title

Guy Carmeli před 7 roky
rodič
revize
543f720b6e

+ 6
- 0
lib/android/app/src/main/java/com/reactnativenavigation/views/titlebar/TitleBar.java Zobrazit soubor

43
         setContentDescription("titleBar");
43
         setContentDescription("titleBar");
44
     }
44
     }
45
 
45
 
46
+    @Override
47
+    public void setTitle(CharSequence title) {
48
+        clearComponent();
49
+        super.setTitle(title);
50
+    }
51
+
46
     public String getTitle() {
52
     public String getTitle() {
47
         return super.getTitle() == null ? "" : (String) super.getTitle();
53
         return super.getTitle() == null ? "" : (String) super.getTitle();
48
     }
54
     }