Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d30195a6 authored by Dan Sandler's avatar Dan Sandler Committed by Android (Google) Code Review
Browse files

Merge "L: WIP."

parents c4bfcc12 c89deae0
Loading
Loading
Loading
Loading
+98 −132
Original line number Diff line number Diff line
@@ -18,139 +18,105 @@ package com.android.internal.app;

import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.Typeface;
import android.provider.Settings;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.text.method.AllCapsTransformationMethod;
import android.provider.Settings;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.Gravity;
import android.view.View;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.AnticipateOvershootInterpolator;
import android.view.animation.DecelerateInterpolator;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;

public class PlatLogoActivity extends Activity {
    FrameLayout mContent;
    int mCount;
    final Handler mHandler = new Handler();
    static final int BGCOLOR = 0xffed1d24;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    private static class Torso extends FrameLayout {
        boolean mAnimate = false;
        TextView mText;

        DisplayMetrics metrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(metrics);
        public Torso(Context context) {
            this(context, null);
        }
        public Torso(Context context, AttributeSet attrs) {
            this(context, attrs, 0);
        }
        public Torso(Context context, AttributeSet attrs, int flags) {
            super(context, attrs, flags);

        Typeface bold = Typeface.create("sans-serif", Typeface.BOLD);
        Typeface light = Typeface.create("sans-serif-light", Typeface.NORMAL);
            for (int i=0; i<2; i++) {
                final View v = new View(context);
                v.setBackgroundColor(i % 2 == 0 ? Color.BLUE : Color.RED);
                addView(v);
            }

        mContent = new FrameLayout(this);
        mContent.setBackgroundColor(0xC0000000);
            mText = new TextView(context);
            mText.setTextColor(Color.BLACK);
            mText.setTextSize(14 /* sp */);
            mText.setTypeface(Typeface.create("monospace", Typeface.BOLD));

        final FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(
            addView(mText, new FrameLayout.LayoutParams(
                    FrameLayout.LayoutParams.MATCH_PARENT,
                    FrameLayout.LayoutParams.WRAP_CONTENT,
                FrameLayout.LayoutParams.WRAP_CONTENT);
        lp.gravity = Gravity.CENTER;

        final ImageView logo = new ImageView(this);
        logo.setImageResource(com.android.internal.R.drawable.platlogo);
        logo.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
        logo.setVisibility(View.INVISIBLE);

        final View bg = new View(this);
        bg.setBackgroundColor(BGCOLOR);
        bg.setAlpha(0f);

        final TextView letter = new TextView(this);

        letter.setTypeface(bold);
        letter.setTextSize(300);
        letter.setTextColor(0xFFFFFFFF);
        letter.setGravity(Gravity.CENTER);
        letter.setText(String.valueOf(Build.ID).substring(0, 1));

        final int p = (int)(4 * metrics.density);

        final TextView tv = new TextView(this);
        if (light != null) tv.setTypeface(light);
        tv.setTextSize(30);
        tv.setPadding(p, p, p, p);
        tv.setTextColor(0xFFFFFFFF);
        tv.setGravity(Gravity.CENTER);
        tv.setTransformationMethod(new AllCapsTransformationMethod(this));
        tv.setText("Android " + Build.VERSION.RELEASE);
        tv.setVisibility(View.INVISIBLE);

        mContent.addView(bg);
        mContent.addView(letter, lp);
        mContent.addView(logo, lp);

        final FrameLayout.LayoutParams lp2 = new FrameLayout.LayoutParams(lp);
        lp2.gravity = Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL;
        lp2.bottomMargin = 10*p;

        mContent.addView(tv, lp2);
                    Gravity.BOTTOM | Gravity.LEFT
            ));
        }

        mContent.setOnClickListener(new View.OnClickListener() {
            int clicks;
        private Runnable mRunnable = new Runnable() {
            @Override
            public void onClick(View v) {
                clicks++;
                if (clicks >= 6) {
                    mContent.performLongClick();
                    return;
                }
                letter.animate().cancel();
                final float offset = (int)letter.getRotation() % 360;
                letter.animate()
                    .rotationBy((Math.random() > 0.5f ? 360 : -360) - offset)
                    .setInterpolator(new DecelerateInterpolator())
                    .setDuration(700).start();
            public void run() {
                mText.setText(String.format("android_%s.flv - build %s",
                        Build.VERSION.CODENAME,
                        Build.VERSION.INCREMENTAL));
                final int N = getChildCount();
                final float parentw = getMeasuredWidth();
                final float parenth = getMeasuredHeight();
                for (int i=0; i<N; i++) {
                    final View v = getChildAt(i);
                    if (v instanceof TextView) continue;

                    final int w = (int) (Math.random() * parentw);
                    final int h = (int) (Math.random() * parenth);
                    v.setLayoutParams(new FrameLayout.LayoutParams(w, h));

                    v.setX((float) Math.random() * (parentw - w));
                    v.setY((float) Math.random() * (parenth - h));
                }
        });

        mContent.setOnLongClickListener(new View.OnLongClickListener() {
                if (mAnimate) postDelayed(this, 1000);
            }
        };
        @Override
            public boolean onLongClick(View v) {
                if (logo.getVisibility() != View.VISIBLE) {
                    bg.setScaleX(0.01f);
                    bg.animate().alpha(1f).scaleX(1f).setStartDelay(500).start();
                    letter.animate().alpha(0f).scaleY(0.5f).scaleX(0.5f)
                            .rotationBy(360)
                            .setInterpolator(new AccelerateInterpolator())
                            .setDuration(1000)
                            .start();
                    logo.setAlpha(0f);
                    logo.setVisibility(View.VISIBLE);
                    logo.setScaleX(0.5f);
                    logo.setScaleY(0.5f);
                    logo.animate().alpha(1f).scaleX(1f).scaleY(1f)
                        .setDuration(1000).setStartDelay(500)
                        .setInterpolator(new AnticipateOvershootInterpolator())
                        .start();
                    tv.setAlpha(0f);
                    tv.setVisibility(View.VISIBLE);
                    tv.animate().alpha(1f).setDuration(1000).setStartDelay(1000).start();
                    return true;
        protected void onAttachedToWindow() {
            mAnimate = true;
            post(mRunnable);
        }
                return false;
        @Override
        protected void onDetachedFromWindow() {
            mAnimate = false;
            removeCallbacks(mRunnable);
        }
        });
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        final Torso t = new Torso(this);
        t.setBackgroundColor(Color.WHITE);

        logo.setOnLongClickListener(new View.OnLongClickListener() {
        t.getChildAt(0)
                .setOnLongClickListener(new View.OnLongClickListener() {
                    @Override
                    public boolean onLongClick(View v) {
                if (Settings.System.getLong(getContentResolver(), Settings.System.EGG_MODE, 0)
                        final ContentResolver cr = getContentResolver();
                        if (Settings.System.getLong(cr, Settings.System.EGG_MODE, 0)
                                == 0) {
                            // For posterity: the moment this user unlocked the easter egg
                    Settings.System.putLong(getContentResolver(),
                            Settings.System.putLong(cr,
                                    Settings.System.EGG_MODE,
                                    System.currentTimeMillis());
                        }
@@ -168,6 +134,6 @@ public class PlatLogoActivity extends Activity {
                    }
                });

        setContentView(mContent);
        setContentView(t);
    }
}
−213 B
Loading image diff...
−414 B
Loading image diff...
−161 B
Loading image diff...
−38.9 KiB
Loading image diff...
Loading