Nguyen Hoang Lam
Nguyen Hoang Lam
How can the Modal automatically wrap its child content instead of fixed height?
Whenever I call stop() method of MediaPlayer class, the app was freezing in about 20 seconds. This is a bug or I did something wrong?
When media player reach end of video, I call release method like this: ```java public void release() { if (mLibVLC == null) return; final IVLCVout vout = mMediaPlayer.getVLCVout(); vout.removeCallback(this); vout.detachViews();...
ExpandableRecyclerView will be great if it has an load more listener callback for each child list. I'm waiting for this feature for a long time. Hope the next version will...
Here is my test code ```javascript it('should call update api', async () => { axios.resetHistory(); axios.onPost('api/update').reply(200, {}); // userService.update() should call axios.post('api/update') await userService.update({name: "Test"}); expect(axios.history.post.length).toBe(1); }); ``` I expect...