0

我正在做与在 android 中相同的活动来设置给定画廊的壁纸。

当画廊停止滚动中心图像时,我有一个包含 50 个图像的画廊,我想在 imageview 中显示该图像。

 g.setOnItemSelectedListener(new OnItemSelectedListener()
    {
        public void onItemSelected(AdapterView<?> arg0, View arg1,
                final int arg2, long arg3)
        {

            imageView.setImageResource(mImageIds[arg2]);  

        }

        public void onNothingSelected(AdapterView<?> arg0)
        {
            Toast.makeText(WallpaperThemeChoose.this, "NOTHING",
                    Toast.LENGTH_SHORT).show();
        }
    });

在滚动图像视图时,设置每个在图库中传递的图像。所以暂停一段时间然后开始我的意思是它在滚动时会粘住一段时间我不想显示所有正在通过的图像,但只有在滚动停止时出现在中心的图像。

4

1 回答 1

0

通过设置得到解决方案g.setCallbackDuringFling(false);

于 2012-04-23T05:34:40.817 回答