I am trying to create an application that uses scrollView in Android. It so happened that scrollView does not support matrices. Therefore, I cannot do something like this:
Matrix matrix = new Matrix(); Matrix eventMatrix = new Matrix(); // possible touch states final static int NONE = 0; final static int DRAG = 1; final static int ZOOM = 2; int touchState = NONE;
Does anyone know if it is possible to achieve scalability as well as compress functionality through another process? Appreciate the help.
Thanks.
[RE-EDIT]
ScrollView will serve as a container so that various user interfaces can be placed in it. Thus, scrollView can serve as one part of the user interface.
Thanks.
source share