gpt4 book ai didi

android.widget.ZoomButtonsController.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-18 08:55:31 26 4
gpt4 key购买 nike

本文整理了Java中android.widget.ZoomButtonsController.<init>()方法的一些代码示例,展示了ZoomButtonsController.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoomButtonsController.<init>()方法的具体详情如下:
包路径:android.widget.ZoomButtonsController
类名称:ZoomButtonsController
方法名:<init>

ZoomButtonsController.<init>介绍

暂无

代码示例

代码示例来源:origin: redfish64/TinyTravelTracker

private void setupZoomButtonController(final View ownerView) {
  mZoomButtonsController = new ZoomButtonsController(ownerView);
  mZoomButtonsController.setAutoDismissed(false);
  mZoomButtonsController.setZoomSpeed(100);
  mZoomButtonsController.setOnZoomListener(
      new ZoomButtonsController.OnZoomListener() {
    public void onVisibilityChanged(boolean visible) {
      if (visible) {
        updateZoomButtonsEnabled();
      }
    }
    public void onZoom(boolean zoomIn) {
      if (zoomIn) {
        mImageView.zoomIn();
      } else {
        mImageView.zoomOut();
      }
      mZoomButtonsController.setVisible(true);
      updateZoomButtonsEnabled();
    }
  });
}

代码示例来源:origin: stackoverflow.com

mGestureDetector = new GestureDetector(this);
mScale = 1;
mZoomController = new ZoomButtonsController(this);
mZoomController.setAutoDismissed(true);
mZoomController.setOnZoomListener(this);

代码示例来源:origin: org.robolectric/shadows-maps

public void __constructor__(Context context, AttributeSet attributeSet) {
 setContextOnRealView(context);
 this.attributeSet = attributeSet;
 zoomButtonsController = new ZoomButtonsController(realMapView);
 invokeConstructor(View.class, realView,
   ClassParameter.from(Context.class, context),
   ClassParameter.from(AttributeSet.class, attributeSet),
   ClassParameter.from(int.class, 0));
 invokeConstructor(ViewGroup.class, realView,
   ClassParameter.from(Context.class, context),
   ClassParameter.from(AttributeSet.class, attributeSet),
   ClassParameter.from(int.class, 0));
}

代码示例来源:origin: org.robolectric/shadows-maps

@Override public void __constructor__(Context context, AttributeSet attributeSet, int defStyle) {
 setContextOnRealView(context);
 this.attributeSet = attributeSet;
 zoomButtonsController = new ZoomButtonsController(realMapView);
 invokeConstructor(View.class, realView,
   ClassParameter.from(Context.class, context),
   ClassParameter.from(AttributeSet.class, attributeSet),
   ClassParameter.from(int.class, defStyle));
 invokeConstructor(ViewGroup.class, realView,
   ClassParameter.from(Context.class, context),
   ClassParameter.from(AttributeSet.class, attributeSet),
   ClassParameter.from(int.class, defStyle));
 super.__constructor__(context, attributeSet, defStyle);
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com