Open Miteshmakwana73 opened 3 years ago
Hey there, I ran into this issue as well, My solution (for now) is to keep the implementation of appcompat at 1.2.0, do not update it to 1.3.0
build.gradle (app):
implementation 'androidx.appcompat:appcompat:1.2.0'
Hey there, I ran into this issue as well, My solution (for now) is to keep the implementation of appcompat at 1.2.0, do not update it to 1.3.0
build.gradle (app):
implementation 'androidx.appcompat:appcompat:1.2.0'
Thank you for the suggestion but it does not help in my case.
Please check out PictureSelector https://github.com/LuckSiege/PictureSelector
Hey there, I ran into this issue as well, My solution (for now) is to keep the implementation of appcompat at 1.2.0, do not update it to 1.3.0
build.gradle (app): implementation 'androidx.appcompat:appcompat:1.2.0'
didn't understand if appcompat is issue then why it's showing all media?
and it's not working for me either
image not showing on switch of folder
this is what i done so far
btnPick.setOnClickListener { Matisse.from(this@ImagePicker) .choose(MimeType.ofAll()) .capture(true) .captureStrategy( CaptureStrategy(true, BuildConfig.APPLICATION_ID)) .theme(R.style.Matisse_Dracula) .countable(false) .maxSelectable(5) .maxOriginalSize(0) .originalEnable(false) .imageEngine(Glide4Engine()) .showPreview(false) // Default is `true` .forResult(111) }
Library
repositories { google() jcenter() mavenCentral() } //imagepicker implementation "com.zhihu.android:matisse:0.5.3-beta3" //glide implementation 'com.github.bumptech.glide:glide:4.12.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
this is what i am getting in log
2021-06-14 16:16:13.273 9322-9322/com.tops.popupmenu W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@21e44eb 2021-06-14 16:16:13.503 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:13.592 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:13.605 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:13.615 9322-9352/com.tops.popupmenu I/chatty: uid=10153(com.tops.popupmenu) RenderThread identical 1 line 2021-06-14 16:16:13.628 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:13.834 9322-9322/com.tops.popupmenu W/Glide: Failed to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:compiler in your application and a @GlideModule annotated AppGlideModule implementation or LibraryGlideModules will be silently ignored 2021-06-14 16:16:22.119 9322-9322/com.tops.popupmenu W/.tops.popupmen: Accessing hidden field Landroid/widget/AbsListView;->mIsChildViewEnabled:Z (greylist, reflection, allowed) 2021-06-14 16:16:22.304 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:22.523 9322-9352/com.tops.popupmenu I/chatty: uid=10153(com.tops.popupmenu) RenderThread identical 15 lines 2021-06-14 16:16:22.530 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:23.855 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50) 2021-06-14 16:16:23.890 9322-9352/com.tops.popupmenu I/chatty: uid=10153(com.tops.popupmenu) RenderThread identical 3 lines 2021-06-14 16:16:24.191 9322-9352/com.tops.popupmenu D/EGL_emulation: eglMakeCurrent: 0xdc8b8060: ver 3 0 (tinfo 0xdc8e9c50)
this is what i am getting on first time open
i am getting this if i switch folder
Any solution? media not showing when switch folder
use this:-
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.activity:activity:1.3.0' implementation 'androidx.fragment:fragment:1.2.0'
this work for me
any update?
any update?
This library seems to be no longer maintained https://github.com/zhihu/Matisse/issues/869
I've created a PR with fix for this issue. I doubt it will be merged any time soon, so if you want to use newer versions of appcompat and still use this library you could build it to an aar
and attach this way to the project.
not working with this code still facing the same issue after changing the folder showing a blank screen
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.activity:activity:1.3.0'
implementation 'androidx.fragment:fragment:1.2.0'
@hemrajKumawat1 - https://github.com/zhihu/Matisse/issues/814#issuecomment-1028747472
change to this in class AlbumMediaCollection
private final int LOADER_ID = hashCode();
It will work.
hey anybody found a solution i am also getting this same issue
image not showing on switch of folder
this is what i done so far
Library
this is what i am getting in log
this is what i am getting on first time open
i am getting this if i switch folder