前言
在上一节中,我们讲到了自定义温度控件的知识,大家有兴趣的话,可参考以下文章
自定义温度显示控件(一)
为了让数字实现更加炫丽的效果,我们想让显示的数字在切换时滚动起来,于是这节先来解析一个数字滚动效果的示例。
今天涉及知识有:
- 数字滚动效果实现逻辑
-
MultiRollNumber
相关方法 -
MultiRollNumber
在MainActivity
中的使用 - 效果图和项目结构图
-
MultiRollNumber
相关源码
效果图如下:
效果图.gif
一. 数字滚动效果实现逻辑
这里我们实现数字滚动效果的话需要用到两个自定义View
:MultiRollNumber
和RollNumber
。
RollNumber
负责单个view需要显示的内容的测量绘制,比较重要的逻辑是负责单个视图的移动。RollNumber
在onDraw(Canvas canvas)
中的绘制逻辑是:
- 启子线程设置插值器,用于设置滚动差速,设置数字递增,并在子线程中通知
onDraw(Canvas canvas)
重绘 - 第二步是移动单个视图
- 绘制当前视图的显示内容
- 绘制下一个视图的显示内容
其中,2,3,4的步骤不能错乱。3,4顺序是毋庸置疑的,就是第二步的移动视图,如果放到绘制显示内容之后,将不会显示滚动效果,而是值"原地"变化。
MultiRollNumber
继承自LinearLayout
,主要作用是批量封装RollNumber
控件,并add
到MultiRollNumber
中,然后触发RollNumber
的重绘。当然,MultiRollNumber
由于继承自LinearLayout
,便有了控制数字滚动方向的功能。
二. MultiRollNumber 相关方法
数字滚动控件MultiRollNumber
有以下方法:
/**刷新显示,数字类型为double**/
public void setNumber(double num)
/**刷新显示,数字类型为int**/
public void setNumber(int val)
/**设置数字从 from 滚动到 to (from和to均为int数据类型)**/
public void setNumber(int from, int to)
/**设置文字颜色**/
public void setTextColors(@ColorRes int[] textColors)
/**设置文字大小**/
public void setTextSize(int textSize)
/**设置插值器**/
public void setInterpolator(Interpolator interpolator)
/**设置字体**/
public void setTextFont(String fileName)
/**设置滚动速率**/
public void setScrollVelocity(@IntRange(from = 0, to = 1000) int velocity)
三. MultiRollNumber 在 MainActivity 中的使用
先给出MainActivity
布局activity_main.xml
对MultiRollNumber
控件的引用:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/tv_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="@dimen/dp_70"/>
<Button
android:id="@+id/btn_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="测试1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_text"
android:layout_marginTop="@dimen/dp_20"/>
<Button
android:id="@+id/btn_test2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="测试n"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_test"
android:layout_marginTop="@dimen/dp_20"/>
<com.pain.testdemo.function.MultiRollNumber
android:id="@+id/multi_scroll_number"
android:layout_width="wrap_content"
android:layout_height="@dimen/dp_40"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_test2"
android:layout_marginTop="@dimen/dp_20"
app:primary_number="0"
app:target_number="0"
app:number_size="24"/>
</androidx.constraintlayout.widget.ConstraintLayout>
然后给出MultiRollNumber
在MainActivity
中使用代码:
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
private TextView mTv;
private Button mBtn;
private Button mBtn2;
private MultiRollNumber multiRollNumber;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MyUtil.i("=======onCreate======");
initView();
initData();
setListener();
}
private void initView() {
mTv = findViewById(R.id.tv_text);
mBtn = findViewById(R.id.btn_test);
mBtn2 = findViewById(R.id.btn_test2);
multiRollNumber = findViewById(R.id.multi_scroll_number);
}
private void initData() {
multiRollNumber.setNumber(12,50);
}
private void setListener() {
mBtn.setOnClickListener(this);
mBtn2.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_test:
MyUtil.i("=======test======");
multiRollNumber.setNumber(9.1739d);
break;
case R.id.btn_test2:
MyUtil.i("=======test2=====");
multiRollNumber.setNumber(2,7);
break;
default:
break;
}
}
}
四. 效果图和项目结构图
项目结构图.png 效果图.gif五. MultiRollNumber 相关源码
RollNumber
源码如下:
网友评论