移动到图库中的下一张图片的按钮?

时间:2011-06-17 15:43:58

标签: android android-layout

我有2个按钮“Next”和“Previous”。我希望他们转到我画廊中的下一张/上一张图片。如何设置按钮的监听器来完成此操作?

1 个答案:

答案 0 :(得分:3)

如果是您的自定义图库,那么您可以执行以下操作

将监听器添加到按钮

previousButton = (Button) findViewById(R.id.backButton);
        previousButton.setOnClickListener(this);

        nextButton = (Button) findViewById(R.id.nextButton);
        nextButton.setOnClickListener(this);

在onclick方法中设置图像

@Override
public void onClick(View view) {
    // TODO Auto-generated method stub
    if (view == previousButton) {
            --positionOfSelectedImage;
            // set background image of
        } else if (view == nextButton) {
            ++positionOfSelectedImage;
        }

imageToBeSet.setImageURI(Uri.parse(absolutepathOfImage));
}

由于 迪帕克