Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
28
apk_decompiled/sources/x2/c.java
Normal file
28
apk_decompiled/sources/x2/c.java
Normal file
@@ -0,0 +1,28 @@
|
||||
package x2;
|
||||
|
||||
import android.graphics.Matrix;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class c {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public static final ThreadLocal f8942a = new ThreadLocal();
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public static final ThreadLocal f8943b = new ThreadLocal();
|
||||
|
||||
public static void a(ViewGroup viewGroup, View view, Matrix matrix) {
|
||||
Object parent = view.getParent();
|
||||
if ((parent instanceof View) && parent != viewGroup) {
|
||||
a(viewGroup, (View) parent, matrix);
|
||||
matrix.preTranslate(-r0.getScrollX(), -r0.getScrollY());
|
||||
}
|
||||
matrix.preTranslate(view.getLeft(), view.getTop());
|
||||
if (view.getMatrix().isIdentity()) {
|
||||
return;
|
||||
}
|
||||
matrix.preConcat(view.getMatrix());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user