Kirin Patel

Results 8 comments of Kirin Patel

Perhaps there can be two author guides, one for new packages and one for existing packages?

What worked for me was putting the code from onResume() in the setOnSCrollListener and OnSroll methods.

I'm unsure if you are still facing this issue, but for anyone using recyclerviews, set this as your addOnScrollListener ``` mRecyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() { @Override public void onScrollStateChanged(RecyclerView recyclerView, int scrollState)...

I have a new update for this issue, I was able to fix it with the code above. However there was still a crashes that occurred due to scrolling before...

Here is the code from the gist ``` mRecyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() { @Override public void onScrollStateChanged(RecyclerView recyclerView, int scrollState) { if(!mList.isEmpty()){ // need to call this method from list view handler...

@jeremyyu123 would you be able to send me a gist of your code or allow me to fork your repository

@jeremyyu123 hopefully that's the fix, always glad to help

I believe this is a non-issue. The behavior I have experienced is that AudioWorklets respect the system ringer setting. If the ringer is off, volume output is disabled, if the...