用按钮android studio移动图像

时间:2015-10-12 19:24:22

标签: android image object button pixel

我的视图中有一个图像和一个按钮。我希望能够按下按钮,图像将向下移动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"/>

我该怎么做?感谢

3 个答案:

答案 0 :(得分:1)

每次单击按钮时,您都可以在图像视图中添加上边距:

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。

答案 1 :(得分:0)

添加android:onClick =“myMethodName”,您可以使用动画和图形。 Check this link

答案 2 :(得分:0)

在您的onClickListener为该按钮调用的方法中,您可以使用以下内容:

ImageView imageView = (ImageView) findViewById(R.id.your_image_view_id);
float y = imageView.getY();
y++;
imageView.setY(y);

非常简单。