隐藏一个图像并显示其他图像

时间:2013-08-27 17:48:34

标签: android touch imageview overlay

我有两个图像(上面,下面)相互放置。我想隐藏用户触摸的上述图像部分。最后,图像将完全删除,图像下方完全可见。

我将如何在Android中实现此功能。我真的很无能为力。请帮忙

1 个答案:

答案 0 :(得分:1)

示例:

button = (Button) findViewById(R.id.button);
leftButton.setOnClickListener(new Button.OnClickListener() {  
    public void onClick(View v)
        {
            image.setVisibility(View.INVISIBLE); //to set the image as invisible
            image.setVisibility(View.VISIBLE); // to set it back to visible
        }
     });

希望这会对你有所帮助。