Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make zoomable LinearLayout? [closed]

I am having an xml file which I want to make zoomable.

like image 818
Baby Be'el Avatar asked Nov 27 '22 14:11

Baby Be'el


1 Answers

use this jar in your application

1.Create a new layout (R.layout.zoomableview) for Views that i want to apply the zooming functionality.

2.Place it inside ZoomView.

3.Then place the ZoomView to the main container where you want to show the zoomable view.

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);            }
like image 178
Venkat Avatar answered Dec 15 '22 13:12

Venkat