mirror of
https://github.com/Docile-Alligator/Infinity-For-Reddit.git
synced 2026-03-01 05:01:48 +00:00
Set title to bottom app bar in ViewVideoActivity.
This commit is contained in:
@ -302,9 +302,15 @@ public class ViewVideoActivity extends AppCompatActivity {
|
||||
|
||||
|
||||
if (postTitle != null) {
|
||||
setTitle(Html.fromHtml(String.format("<small>%s</small>", postTitle)));
|
||||
if (useBottomAppBar) {
|
||||
titleTextView.setText(Html.fromHtml(String.format("<small>%s</small>", postTitle)));
|
||||
} else {
|
||||
setTitle(Html.fromHtml(String.format("<small>%s</small>", postTitle)));
|
||||
}
|
||||
} else {
|
||||
setTitle("");
|
||||
if (!useBottomAppBar) {
|
||||
setTitle("");
|
||||
}
|
||||
}
|
||||
|
||||
videoPlayerView.setControllerVisibilityListener(visibility -> {
|
||||
|
||||
Reference in New Issue
Block a user