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 5e8a1ed commit e8a6ac1Copy full SHA for e8a6ac1
library/src/main/java/com/developer/spoti/vspoti/VSpotMessageView2.java
@@ -2,6 +2,8 @@
2
3
import android.content.Context;
4
import android.graphics.Color;
5
+import android.graphics.Paint;
6
+import android.graphics.Path;
7
import android.graphics.Typeface;
8
import android.text.Spannable;
9
import android.util.TypedValue;
@@ -13,6 +15,11 @@
13
15
14
16
class VSpotMessageView2 extends LinearLayout {
17
18
+ private final Paint arrowPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
19
+ private final Path arrowPath = new Path();
20
+ private static final float ARROW_WIDTH = 20;
21
+ private static final float ARROW_HEIGHT = 12;
22
+
23
private TextView mTitleTextView;
24
private TextView mContentTextView;
25
private float density;
0 commit comments