We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's says we've got a regular activity:
public class LeakActivity extends AppCompatActivity { @Override public void onStart() { super.onStart(); new QCircleTemplate(this, TemplateType.CIRCLE_EMPTY); } }
In normal situation the memory usage will be as before, but currently:
I'll try to research it by myself.
Referencing issue in my repo: yoavst/quickapps#1
Edit 1: The memory goes high on:
layoutView = ((Activity)this.mContext).getLayoutInflater().inflate(layout.qcircle_empty, (ViewGroup)null);
Edit 2: The fix is simple, moving circlebackground.png drawable to drawable-nodpi fixes it. I've checked it on LG G4 and it looks the same.
circlebackground.png
The text was updated successfully, but these errors were encountered:
Fixed. See f3503c3
Sorry, something went wrong.
No branches or pull requests
Let's says we've got a regular activity:
In normal situation the memory usage will be as before, but currently:
I'll try to research it by myself.
Referencing issue in my repo: yoavst/quickapps#1
Edit 1:
The memory goes high on:
Edit 2:
The fix is simple, moving
circlebackground.png
drawable to drawable-nodpi fixes it. I've checked it on LG G4 and it looks the same.The text was updated successfully, but these errors were encountered: