We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812fcf0 commit 54b824aCopy full SHA for 54b824a
library/src/main/java/com/developer/spoti/vspoti/VSpotMessageView2.java
@@ -38,6 +38,17 @@ public void run() {
38
}
39
};
40
41
+ private final Runnable titleCharacterAdder = new Runnable() {
42
+ @Override
43
+ public void run() {
44
+ if (titleIndex <= fullTitle.length()) {
45
+ mTitleTextView.setText(fullTitle.subSequence(0, titleIndex));
46
+ titleIndex++;
47
+ titleHandler.postDelayed(this, titleDelay);
48
+ }
49
50
+ };
51
+
52
VSpotMessageView2(Context context) {
53
super(context);
54
0 commit comments