Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,59 @@
package com.google.maps.android.ui;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.FrameLayout;
/* JADX INFO: loaded from: classes2.dex */
public class RotationLayout extends FrameLayout {
private int mRotation;
public RotationLayout(Context context) {
super(context);
}
public RotationLayout(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public RotationLayout(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
}
@Override // android.widget.FrameLayout, android.view.View
protected void onMeasure(int i, int i2) {
int i3 = this.mRotation;
if (i3 == 1 || i3 == 3) {
super.onMeasure(i, i2);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
} else {
super.onMeasure(i, i2);
}
}
public void setViewRotation(int i) {
this.mRotation = ((i + 360) % 360) / 90;
}
@Override // android.view.ViewGroup, android.view.View
public void dispatchDraw(Canvas canvas) {
int i = this.mRotation;
if (i == 0) {
super.dispatchDraw(canvas);
return;
}
if (i == 1) {
canvas.translate(getWidth(), 0.0f);
canvas.rotate(90.0f, getWidth() / 2, 0.0f);
canvas.translate(getHeight() / 2, getWidth() / 2);
} else if (i == 2) {
canvas.rotate(180.0f, getWidth() / 2, getHeight() / 2);
} else {
canvas.translate(0.0f, getHeight());
canvas.rotate(270.0f, getWidth() / 2, 0.0f);
canvas.translate(getHeight() / 2, (-getWidth()) / 2);
}
super.dispatchDraw(canvas);
}
}