4

I am making an Android App and i need one of my Layouts to have Zoom control and have it be Scrollable Vertical, but i don't know how to successfully do this?

IntelSoftApps
  • 1,161
  • 3
  • 14
  • 18

1 Answers1

-1

use this jar in your application

private ZoomView zoomView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_zoomable);

View v = ((LayoutInflater)   getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.zoomableview, null, false);
v.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));

zoomView = new ZoomView(this);
zoomView.addView(v);

main_container = (LinearLayout) findViewById(R.id.main_container);
main_container.addView(zoomView);            }
Venkat
  • 3,447
  • 6
  • 42
  • 61