What is ARCore ARCore is Google’s platform for building augmented reality experiences. Using different APIs, ARCore enables your phone to sense its environment, understand the…
Month: January 2019
IOS progress dialog in swift 4
Step : 1 Create a swift class that can be used as reusable [java] import UIKit class ProgressHUD: UIVisualEffectView { var text: String? { didSet…
Convert millisecond/ Unix date time format to actual date time in swift 4
1 . From millisecond to date time format and show on a label [java] let date = Date(timeIntervalSince1970: (yourDateValue / 1000.0)) let dateFormatter = DateFormatter()…
Android touch swipe detection on left , right , top , bottom java and kotlin
Step 1 : Create a java class [java] import android.content.Context; import android.view.GestureDetector; import android.view.GestureDetector.SimpleOnGestureListener; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; public class OnSwipeTouchListener implements OnTouchListener…