4

我有一个想要缩放的 xml 文件。

4

1 回答 1

28

在你的应用程序中使用这个 jar

1.为我想要应用缩放功能的视图创建一个新布局 (R.layout.zoomableview)。

2.将它放在ZoomView中。

3.然后将 ZoomView 放置到要显示可缩放视图的主容器中。

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);            }
于 2013-04-06T11:05:46.370 回答