Display LongMessage in dialog fragment.

This commit is contained in:
Alex Hart
2022-02-11 11:48:58 -04:00
committed by GitHub
parent ac3196bbb3
commit aa6fa45949
6 changed files with 52 additions and 73 deletions

View File

@@ -35,7 +35,11 @@ public abstract class FullScreenDialogFragment extends DialogFragment {
View view = inflater.inflate(R.layout.full_screen_dialog_fragment, container, false);
inflater.inflate(getDialogLayoutResource(), view.findViewById(R.id.full_screen_dialog_content), true);
toolbar = view.findViewById(R.id.full_screen_dialog_toolbar);
toolbar.setTitle(getTitle());
if (getTitle() != -1) {
toolbar.setTitle(getTitle());
}
toolbar.setNavigationOnClickListener(v -> onNavigateUp());
return view;
}