在Instagram应用中登录时背景如何变化? [英] How background changes at login in Instagram app?

查看:122
本文介绍了在Instagram应用中登录时背景如何变化?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我让我的应用每隔几毫秒更改一次背景颜色.但这对用户没有吸引力.如果您已经看到Instagram的登录屏幕,它会以非常柔和的速度和模糊的效果更改颜色.

I have made my app to change background color every few milliseconds. But it is not appealing to user. If you have seen Instagram's login screen, it changes color at a very soft rate and with blurry effect.

我只是想为我的应用提供这种背景. 我该怎么办

I just wanted that type of background for my app. What should I have to do for that

推荐答案

使用以下代码可能对您来说是个好开始:

Using following code might be good start for you:

public class BackgroundPainter {

  private static final int MIN = 800;
  private static final int MAX = 1500;

  private final Random random;

  public BackgroundPainter() {
    random = new Random();
  }

  public void animate(@NonNull final View target, @ColorInt final int color1,
      @ColorInt final int color2) {

    final ValueAnimator valueAnimator = ValueAnimator.ofObject(new ArgbEvaluator(), color1, color2);

    valueAnimator.setDuration(randInt(MIN, MAX));

    valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
      @Override public void onAnimationUpdate(ValueAnimator animation) {
        target.setBackgroundColor((int) animation.getAnimatedValue());
      }
    });
    valueAnimator.addListener(new AnimatorListenerAdapter() {
      @Override public void onAnimationEnd(Animator animation) {
        //reverse animation
        animate(target, color2, color1);
      }
    });

    valueAnimator.setInterpolator(new AccelerateDecelerateInterpolator());
    valueAnimator.start();
  }

  private int randInt(int min, int max) {
    return random.nextInt((max - min) + 1) + min;
  }
}

用法:

final View targetView = findViewById(R.id.root_view);

BackgroundPainter backgroundPainter = new BackgroundPainter();

int color1 = ContextCompat.getColor(this, R.color.colorAccent);
int color2 = ContextCompat.getColor(this, R.color.colorPrimary);

backgroundPainter.animate(targetView, color1, color2);


更新

要更改包含一种以上颜色的背景,通常说来是可绘制对象而不是ValueAnimator,则可以尝试使用以下解决方案.

For changing background which consists of more than one color, generally speaking of drawables instead of ValueAnimator you can try using below solution.

我已经使用API​​ 19和23在Device上测试了此代码.

I have tested this code on Device with API 19 and 23.

colors.xml中定义颜色:

  <color name="color1">#9C27B0</color>
  <color name="color2">#FF4081</color>
  <color name="color3">#7B1FA2</color>
  <color name="color4">#F8BBD0</color>
  <color name="color5">#FF5252</color>
  <color name="color6">#607D8B</color>
  <color name="color7">#FF5722</color>
  <color name="color8">#FFA000</color>

drawable中定义渐变:

gradient_1.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <gradient
      android:angle="45"
      android:endColor="@color/color2"
      android:startColor="@color/color1"
      android:type="linear"/>
</shape>

gradient_2.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <gradient
      android:angle="-45"
      android:endColor="@color/color5"
      android:startColor="@color/color3"
      android:type="linear"/>
</shape>

gradient_3.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <gradient
      android:angle="45"
      android:endColor="@color/color8"
      android:startColor="@color/color7"
      android:type="linear"/>
</shape>

在您的项目中创建类GradientBackgroundPainter:

public class GradientBackgroundPainter {

  private static final int MIN = 4000;
  private static final int MAX = 5000;

  private final Random random;
  private final Handler handler;
  private final View target;
  private final int[] drawables;
  private final Context context;

  public GradientBackgroundPainter(@NonNull View target, int[] drawables) {
    this.target = target;
    this.drawables = drawables;
    random = new Random();
    handler = new Handler();
    context = target.getContext().getApplicationContext();
  }

  private void animate(final int firstDrawable, int secondDrawable, final int duration) {
    if (secondDrawable >= drawables.length) {
      secondDrawable = 0;
    }
    final Drawable first = ContextCompat.getDrawable(context, drawables[firstDrawable]);
    final Drawable second = ContextCompat.getDrawable(context, drawables[secondDrawable]);

    final TransitionDrawable transitionDrawable =
        new TransitionDrawable(new Drawable[] { first, second });

    target.setBackgroundDrawable(transitionDrawable);

    transitionDrawable.setCrossFadeEnabled(false);

    transitionDrawable.startTransition(duration);

    final int localSecondDrawable = secondDrawable;
    handler.postDelayed(new Runnable() {
      @Override public void run() {
        animate(localSecondDrawable, localSecondDrawable + 1, randInt(MIN, MAX));
      }
    }, duration);
  }

  public void start() {
    final int duration = randInt(MIN, MAX);
    animate(0, 1, duration);
  }

  public void stop() {
    handler.removeCallbacksAndMessages(null);
  }

  private int randInt(int min, int max) {
    return random.nextInt((max - min) + 1) + min;
  }
}

和用法:

public class MainActivity extends AppCompatActivity {

  private GradientBackgroundPainter gradientBackgroundPainter;

  @Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    View backgroundImage = findViewById(R.id.root_view);

    final int[] drawables = new int[3];
    drawables[0] = R.drawable.gradient_1;
    drawables[1] = R.drawable.gradient_2;
    drawables[2] = R.drawable.gradient_3;

    gradientBackgroundPainter = new GradientBackgroundPainter(backgroundImage, drawables);
    gradientBackgroundPainter.start();
  }

  @Override protected void onDestroy() {
    super.onDestroy();
    gradientBackgroundPainter.stop();
  }
}

这篇关于在Instagram应用中登录时背景如何变化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆