Avoid object allocations during draw/layout operations
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint = new Paint(Paint.LINEAR_TEXT_FLAG);
}
사용자 정의 View의 onDraw에 new 객체가 있으면 다음과 같은 경고가 표시됩니다.
Avoid object allocations during draw/layout operations (preallocate and reuse instead)
Issue: Looks for memory allocations within drawing code
Id: DrawAllocation
You should avoid allocating objects during a drawing or layout operation. These are called frequently, so a smooth UI can be interrupted by garbage collection pauses caused by the object allocations.
The way this is generally handled is to allocate the needed objects up front and to reuse them for each drawing operation.
Some methods allocate memory on your behalf (such as Bitmap.create), and these should be handled in the same way.
번역의 뜻은draw/layout(onDraw() 반복 운행)이라는 빈번한 작업에서 대상을 분배해야 하기 때문에 대량의 새로운 대상을 초래하고 빈번한 쓰레기 회수를 초래할 수 있다.해결 방법은 new 대상을 구조 함수에 놓고 onDraw에서 복원하는 것입니다.
class YourClass extends View
{
//Paint paint = new Paint();
Paint paint;
public YourClass(Context context) {
this(context, null);
init();
}
public YourClass(Context context, AttributeSet attrs) {
this(context, attrs, 0);
init();
}
public YourClass(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init()
{
paint = new Paint(Paint.LINEAR_TEXT_FLAG);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint.setColor(Color.WHITE);
stackoverflow
Object allocation during draw/layout?
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.