一个动态波浪纹Android界面

技术一个动态波浪纹Android界面 一个动态波浪纹Android界面IndexActivity.javapackage com.example.rubikrobot;import androidx.a

一个动态波浪纹机器人界面

IndexActivity.java

包裹。com。例子。rubikrobot

导入androidx。app compat。app。AppCompactivity

导入安卓。动画。动画师;

导入安卓。动画。动画师集;

导入安卓。动画。objectanimator

导入安卓。内容。意图;

导入安卓。操作系统。捆绑;

导入安卓。操作系统。处理程序;

导入安卓。操作系统。活套;

导入安卓。查看。查看;

导入安卓。查看。窗户;

导入安卓。查看。动画。加速减速插值器;

导入安卓。小部件。按钮;

导入安卓。小部件。imageview

导入Java。乌提尔。ArrayList

公共类索引活动扩展了AppCompatActivity {

私人按钮按钮;

@覆盖

受保护的无效创建(捆绑保存实例){ 0

超级棒。oncreate(savedInstanceState);

请求窗口功能(窗口。特征_编号_标题);

setContentView(r . layout。activity _ index);

final RippleBackground RippleBackground=findweid(r . id。内容);

最终处理程序=新处理程序(looper。my loop er());

//Founddevice=(ImageView)FindeViewByID(r . id。found device);

button=findwiewbyid(r . id。中心图像);

ripplebackground。startrippleanimation();

意向意向=新意向();

button.setOnClickListener(新视图OnClickListener(){ 0

@覆盖

公共空间点击(视图v){ 0

意图。setclass(indexactivity。这个,主要活动。类);

startActivity(意图);

}

});

}

}

RippleBackground.java

包裹。com。例子。rubikrobot

导入安卓。动画。动画师;

导入安卓。动画。动画师集;

导入安卓。动画。objectanimator

导入安卓。内容。语境;

导入安卓。内容。RES . typedarray

导入安卓。图形。帆布;

导入安卓。图形。油漆;

导入安卓。乌提尔。属性集;

导入安卓。查看。查看;

导入安卓。查看。动画。加速减速插值器;

导入安卓。小部件。相对布局;

导入Java。乌提尔。ArrayList

公共类RippleBackground扩展了相对视频

私有静态最终int DEFAULT _ RIPPLE _ COUNT=6;

私有静态最终int DEFAULT _ DURATION _ TIME=3000

私有静态最终浮点DEFAULT _ SCALE=6.0f

私人员工

tic final int DEFAULT_FILL_TYPE=0;
private int rippleColor;
private float rippleStrokeWidth;
private float rippleRadius;
private int rippleDurationTime;
private int rippleAmount;
private int rippleDelay;
private float rippleScale;
private int rippleType;
private Paint paint;
private boolean animationRunning=false;
private AnimatorSet animatorSet;
private ArrayListAnimator animatorList;
private LayoutParams rippleParams;
private ArrayListRippleView rippleViewList=new ArrayListRippleView();
public RippleBackground(Context context) {
super(context);
}
public RippleBackground(Context context, AttributeSet attrs) {
super(context, attrs);
init(context, attrs);
}
public RippleBackground(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context, attrs);
}
private void init(final Context context, final AttributeSet attrs) {
if (isInEditMode())
return;
if (null == attrs) {
throw new IllegalArgumentException("Attributes should be provided to this view,");
}
final TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.RippleBackground);
rippleColor=typedArray.getColor(R.styleable.RippleBackground_rb_color, getResources().getColor(R.color.rippelColor));
rippleStrokeWidth=typedArray.getDimension(R.styleable.RippleBackground_rb_strokeWidth, getResources().getDimension(R.dimen.rippleStrokeWidth));
rippleRadius=typedArray.getDimension(R.styleable.RippleBackground_rb_radius,getResources().getDimension(R.dimen.rippleRadius));
rippleDurationTime=typedArray.getInt(R.styleable.RippleBackground_rb_duration,DEFAULT_DURATION_TIME);
rippleAmount=typedArray.getInt(R.styleable.RippleBackground_rb_rippleAmount,DEFAULT_RIPPLE_COUNT);
rippleScale=typedArray.getFloat(R.styleable.RippleBackground_rb_scale,DEFAULT_SCALE);
rippleType=typedArray.getInt(R.styleable.RippleBackground_rb_type,DEFAULT_FILL_TYPE);
typedArray.recycle();
rippleDelay=rippleDurationTime/rippleAmount;
paint = new Paint();
paint.setAntiAlias(true);
if(rippleType==DEFAULT_FILL_TYPE){
rippleStrokeWidth=0;
paint.setStyle(Paint.Style.FILL);
}else
paint.setStyle(Paint.Style.STROKE);
paint.setColor(rippleColor);
rippleParams=new LayoutParams((int)(2*(rippleRadius+rippleStrokeWidth)),(int)(2*(rippleRadius+rippleStrokeWidth)));
rippleParams.addRule(CENTER_IN_PARENT, TRUE);
animatorSet = new AnimatorSet();
animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
animatorList=new ArrayListAnimator();
for(int i=0;irippleAmount;i++){
RippleView rippleView=new RippleView(getContext());
addView(rippleView,rippleParams);
rippleViewList.add(rippleView);
final ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(rippleView, "ScaleX", 1.0f, rippleScale);
scaleXAnimator.setRepeatCount(ObjectAnimator.INFINITE);
scaleXAnimator.setRepeatMode(ObjectAnimator.RESTART);
scaleXAnimator.setStartDelay(i * rippleDelay);
scaleXAnimator.setDuration(rippleDurationTime);
animatorList.add(scaleXAnimator);
final ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(rippleView, "ScaleY", 1.0f, rippleScale);
scaleYAnimator.setRepeatCount(ObjectAnimator.INFINITE);
scaleYAnimator.setRepeatMode(ObjectAnimator.RESTART);
scaleYAnimator.setStartDelay(i * rippleDelay);
scaleYAnimator.setDuration(rippleDurationTime);
animatorList.add(scaleYAnimator);
final ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(rippleView, "Alpha", 1.0f, 0f);
alphaAnimator.setRepeatCount(ObjectAnimator.INFINITE);
alphaAnimator.setRepeatMode(ObjectAnimator.RESTART);
alphaAnimator.setStartDelay(i * rippleDelay);
alphaAnimator.setDuration(rippleDurationTime);
animatorList.add(alphaAnimator);
}
animatorSet.playTogether(animatorList);
}
private class RippleView extends View{
public RippleView(Context context) {
super(context);
this.setVisibility(View.INVISIBLE);
}
@Override
protected void onDraw(Canvas canvas) {
int radius=(Math.min(getWidth(),getHeight()))/2;
canvas.drawCircle(radius,radius,radius-rippleStrokeWidth,paint);
}
}
public void startRippleAnimation(){
if(!isRippleAnimationRunning()){
for(RippleView rippleView:rippleViewList){
rippleView.setVisibility(VISIBLE);
}
animatorSet.start();
animationRunning=true;
}
}
public void stopRippleAnimation(){
if(isRippleAnimationRunning()){
animatorSet.end();
animationRunning=false;
}
}
public boolean isRippleAnimationRunning(){
return animationRunning;
}
}

layout

xml version="1.0" encoding="utf-8"
com.example.rubikrobot.RippleBackground
    xmlns:andro
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#A2DAEC"
    android:
    app:rb_color="#0099CC"
    app:rb_radius="32dp"
    app:rb_rippleAmount="6"
    app:rb_duration="3000"
    app:rb_scale="6"
    Button
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_centerInParent="true"
        android:
        android:text="启动"
        android:textColor="@color/white"
        android:background="@drawable/ic_blue"
        /
/com.example.rubikrobot.RippleBackground

效果图:

这是三个主要文件,剩下的没有展示。

链接:Github

参考文档以及链接均来自于:【Android开发】安卓炫酷效果集合

内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/84605.html

(0)

相关推荐

  • g++入门代码(g++工程师工资)

    技术基于Spark Streaming+Saprk SQL怎么开发OnLineLogAanlysis2这篇文章将为大家详细讲解有关基于Spark Streaming+Saprk SQL怎么开发OnLineLogAanly

    攻略 2021年12月17日
  • mysql的thread_running数量分析

    技术mysql的thread_running数量分析本篇内容主要讲解“mysql的thread_running数量分析”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“mysql

    攻略 2021年11月19日
  • 数据库中常见的术语是什么

    技术数据库中常见的术语是什么这期内容当中小编将会给大家带来有关数据库中常见的术语是什么,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。数据库中常见的术语:字段使用过Office中的Exc

    攻略 2021年11月30日
  • jquery trim方法能去除哪些符号

    技术jquery trim方法能去除哪些符号这篇文章主要介绍“jquery trim方法能去除哪些符号”,在日常操作中,相信很多人在jquery trim方法能去除哪些符号问题上存在疑惑,小编查阅了各式资料,整理出简单好

    攻略 2021年11月15日
  • C#泛型类概念举例分析

    技术C#泛型类概念举例分析这篇文章主要讲解了“C#泛型类概念举例分析”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“C#泛型类概念举例分析”吧!C# 泛型类封装不是特定于具

    攻略 2021年12月2日
  • 下载网页中blob格式视频的方法

    技术下载网页中blob格式视频的方法 下载网页中blob格式视频的方法之所以称这类视频为blob格式的格式,是因为视频在一个 video 标签中,类似于这样:
    video preload="preloa

    礼包 2021年12月18日