FIX: Adnroid app crashes when there is action bar on main page

This commit is contained in:
vakrilov
2015-07-24 11:14:17 +03:00
parent ddb5fb7c61
commit 78886c5e9c

View File

@ -208,13 +208,15 @@ export class ActionBar extends common.ActionBar {
}
public _onTitlePropertyChanged() {
if (frame.topmost().currentPage === this.page) {
var topFrame = frame.topmost();
if (topFrame && topFrame.currentPage === this.page) {
this._updateTitleAndTitleView(frame.topmost().android.actionBar);
}
}
public _onIconPropertyChanged() {
if (frame.topmost().currentPage === this.page) {
var topFrame = frame.topmost();
if (topFrame && topFrame.currentPage === this.page) {
this._updateIcon(frame.topmost().android.actionBar);
}
}