滑动以更改imageview- android中的图像

时间:2014-02-24 14:40:13

标签: android imageview

我的应用程序中有一个imageview,我想在左/右滑动时显示下一个/上一个图像。我在这里找到了一个教程Image swiping and changing with buttons as well,但不知道如何实现它。任何帮助将受到高度赞赏

package com.example.androidhive;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.ImageView;

 public class FullImageActivity extends Activity {

 @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.full_image);

    // get intent data
    Intent i = getIntent();

    // Selected image id
    int position = i.getExtras().getInt("id");
    ImageAdapter imageAdapter = new ImageAdapter(this);

    ImageView imageView = (ImageView) findViewById(R.id.full_image_view);
    imageView.setImageResource(imageAdapter.mThumbIds[position]);
    }

}

1 个答案:

答案 0 :(得分:1)

您可以通过两种方式使用.Jake Wharton的View Pager指标

https://github.com/JakeWharton/Android-ViewPagerIndicator

或者您也可以使用Page curl向左或向右滑动

https://code.google.com/p/android-page-curl/