Prevent crash

This commit is contained in:
M66B 2021-02-17 12:04:00 +01:00
parent 0be37baeee
commit f67d5e2602
1 changed files with 4 additions and 2 deletions

View File

@ -353,8 +353,10 @@ public class FragmentBase extends Fragment {
View custom = actionbar.getCustomView();
TextView tvTitle = custom.findViewById(R.id.title);
TextView tvSubtitle = custom.findViewById(R.id.subtitle);
tvTitle.setText(title == null ? getString(R.string.app_name) : title);
tvSubtitle.setText(subtitle);
if (tvTitle != null)
tvTitle.setText(title == null ? getString(R.string.app_name) : title);
if (tvSubtitle != null)
tvSubtitle.setText(subtitle);
}
}
}