TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing.
I am making an indoor positioning application, for which I need to update the location of the android device every second. The position of the marker should change every second.
final ImageView logo = new ImageView(
logo.setImageResource(R.drawable.logo);
tileView.addMarker(logo, x, y, -0.5f, -1.0f);
I am making an indoor positioning application, for which I need to update the location of the android device every second. The position of the marker should change every second.
final ImageView logo = new ImageView( logo.setImageResource(R.drawable.logo); tileView.addMarker(logo, x, y, -0.5f, -1.0f);
Need to update x and y every second.