File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
library/src/main/java/com/developer/spoti/vspoti Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
class VSpotMessageView2 extends LinearLayout {
17
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
18
private TextView mTitleTextView ;
24
19
private TextView mContentTextView ;
25
20
private float density ;
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ public class VSpotView2 extends FrameLayout {
27
27
private final Paint emptyPaint = new Paint ();
28
28
private final Xfermode XFERMODE_CLEAR = new PorterDuffXfermode (PorterDuff .Mode .CLEAR );
29
29
30
+ private final Paint arrowPaint = new Paint (Paint .ANTI_ALIAS_FLAG );
31
+ private final Path arrowPath = new Path ();
32
+ private static final float ARROW_WIDTH = 20 ;
33
+ private static final float ARROW_HEIGHT = 12 ;
34
+
30
35
public interface VSpotListener {
31
36
void onDismiss (View view );
32
37
}
You can’t perform that action at this time.
0 commit comments