3
3
import static android .os .Environment .getExternalStoragePublicDirectory ;
4
4
5
5
import android .Manifest ;
6
+ import android .annotation .SuppressLint ;
6
7
import android .content .Intent ;
7
8
import android .content .pm .ActivityInfo ;
8
9
import android .content .pm .PackageManager ;
14
15
import android .text .format .DateFormat ;
15
16
import android .util .DisplayMetrics ;
16
17
import android .util .Size ;
18
+ import android .view .MotionEvent ;
17
19
import android .view .Surface ;
18
20
import android .view .SurfaceHolder ;
19
21
import android .view .SurfaceView ;
46
48
47
49
import ai .deepar .ar .ARErrorType ;
48
50
import ai .deepar .ar .AREventListener ;
51
+ import ai .deepar .ar .ARTouchInfo ;
52
+ import ai .deepar .ar .ARTouchType ;
49
53
import ai .deepar .ar .CameraResolutionPreset ;
50
54
import ai .deepar .ar .DeepAR ;
51
55
import ai .deepar .ar .DeepARImageFormat ;
@@ -64,9 +68,7 @@ public class MainActivity extends AppCompatActivity implements SurfaceHolder.Cal
64
68
65
69
private DeepAR deepAR ;
66
70
67
- private int currentMask =0 ;
68
71
private int currentEffect =0 ;
69
- private int currentFilter =0 ;
70
72
71
73
private int screenOrientation ;
72
74
@@ -141,12 +143,28 @@ private void initializeFilters() {
141
143
142
144
}
143
145
146
+ @ SuppressLint ("ClickableViewAccessibility" )
144
147
private void initalizeViews () {
145
148
ImageButton previousMask = findViewById (R .id .previousMask );
146
149
ImageButton nextMask = findViewById (R .id .nextMask );
147
150
148
151
SurfaceView arView = findViewById (R .id .surface );
149
152
153
+ arView .setOnTouchListener ((view , motionEvent ) -> {
154
+ switch (motionEvent .getAction ()) {
155
+ case MotionEvent .ACTION_DOWN :
156
+ deepAR .touchOccurred (new ARTouchInfo (motionEvent .getX (), motionEvent .getY (), ARTouchType .Start ));
157
+ return true ;
158
+ case MotionEvent .ACTION_MOVE :
159
+ deepAR .touchOccurred (new ARTouchInfo (motionEvent .getX (), motionEvent .getY (), ARTouchType .Move ));
160
+ return true ;
161
+ case MotionEvent .ACTION_UP :
162
+ deepAR .touchOccurred (new ARTouchInfo (motionEvent .getX (), motionEvent .getY (), ARTouchType .End ));
163
+ return true ;
164
+ }
165
+ return false ;
166
+ });
167
+
150
168
arView .getHolder ().addCallback (this );
151
169
152
170
// Surface might already be initialized, so we force the call to onSurfaceChanged
@@ -334,7 +352,7 @@ private int getScreenOrientation() {
334
352
}
335
353
private void initializeDeepAR () {
336
354
deepAR = new DeepAR (this );
337
- deepAR .setLicenseKey ("your_license_key_here " );
355
+ deepAR .setLicenseKey ("47e6a945b48d0c92faf3821ddd6f89dbc83457a674c18b8bfbc7d640f0f52f084ed0747b6c5c6e38 " );
338
356
deepAR .initialize (this , this );
339
357
setupCamera ();
340
358
}
0 commit comments