gpt4 book ai didi

android - 使用按钮android studio移动图像

转载 作者:行者123 更新时间:2023-11-30 01:50:44 26 4
gpt4 key购买 nike

我的 View 中有一个图像和一个按钮。我希望能够按下按钮,图像将向下移动 1 个像素...

这是我的图像和按钮代码。

<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/line_image"
android:layout_marginTop="130dp"/>



<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop= "400dp"
android:text="Closer"/>

我应该怎么做?谢谢

最佳答案

您可以在每次单击按钮时向 ImageView 添加上边距:

Button button = findViewById(R.id.button1);
final ImageView image = findViewById(R.id.image1);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
((ViewGroup.MarginLayoutParams)image.getLayoutParams()).topMargin += 1;
image.requestLayout();
}
});

记得给 ImageView 添加一个 id。

关于android - 使用按钮android studio移动图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33088728/

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