Merge branch 'dev' into android-pie-workarrounds
This commit is contained in:
commit
75f2ced937
2 changed files with 6 additions and 1 deletions
|
@ -484,7 +484,6 @@ public class VideoDetailFragment
|
||||||
videoDescriptionView.setMovementMethod(LinkMovementMethod.getInstance());
|
videoDescriptionView.setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
videoDescriptionView.setAutoLinkMask(Linkify.WEB_URLS);
|
videoDescriptionView.setAutoLinkMask(Linkify.WEB_URLS);
|
||||||
|
|
||||||
//thumbsRootLayout = rootView.findViewById(R.id.detail_thumbs_root_layout);
|
|
||||||
thumbsUpTextView = rootView.findViewById(R.id.detail_thumbs_up_count_view);
|
thumbsUpTextView = rootView.findViewById(R.id.detail_thumbs_up_count_view);
|
||||||
thumbsUpImageView = rootView.findViewById(R.id.detail_thumbs_up_img_view);
|
thumbsUpImageView = rootView.findViewById(R.id.detail_thumbs_up_img_view);
|
||||||
thumbsDownTextView = rootView.findViewById(R.id.detail_thumbs_down_count_view);
|
thumbsDownTextView = rootView.findViewById(R.id.detail_thumbs_down_count_view);
|
||||||
|
|
|
@ -115,6 +115,12 @@ public class FilePickerActivityHelper extends com.nononsenseapps.filepicker.File
|
||||||
super.onClickOk(view);
|
super.onClickOk(view);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean isItemVisible(@NonNull File file) {
|
||||||
|
if (file.isDirectory() && file.isHidden()) return true;
|
||||||
|
return super.isItemVisible(file);
|
||||||
|
}
|
||||||
|
|
||||||
public File getBackTop() {
|
public File getBackTop() {
|
||||||
if (getArguments() == null) return Environment.getExternalStorageDirectory();
|
if (getArguments() == null) return Environment.getExternalStorageDirectory();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue