Android中的布局让我很困惑。
我正在慢慢实现一个自定义ImageView,我想在其中使用ZoomButtonsController。
但是,我想确定缩放按钮在布局中的位置,我不知道如何将其从默认的底部中心位置移开。

我一直在尝试在主要活动中布局简单的视图(例如按钮),这似乎在按我的猜测和预期运行。
但是,在使用ZoomButtonsController的情况下,我想重新放置它们。我使用RelativeLayout作为邮件布局,并在自定义ImageView中添加ZoomButtonsController。

活动代码

public class ImageViewActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        CustomImageView imageView = new CustomImageView(this);
        relativeLayout.addView(imageView);
    }
}


CustomImageView代码

public class CustomImageView extends ImageView {
    private ZoomButtonsController mZoomButtons;

    public CustomImageView(Context context) {
        super(context);
        RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT, RelativeLayout.LayoutParams.FILL_PARENT);
        mZoomButtons = new ZoomButtonsController(this);
        mZoomButtons.getZoomControls();
        layoutParams.addRule(RelativeLayout.ALIGN_PARENT_TOP);
        layoutParams.addRule(RelativeLayout.CENTER_HORIZONTAL);
        setLayoutParams(layoutParams);
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        Log.d("TAG", "touch");
        mZoomButtons.setVisible(true);
        return true;
    }
}


我已经在参数中使用WRAP_CONTENT进行了测试,但这只会使缩放按钮消失。

最佳答案

事实上,我无法以任何方式放置ZoomButtonsController,最后必须接受默认位置。

07-27 17:45