gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 01:44:59 26 4
gpt4 key购买 nike

我的应用程序中有一个 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]);
}

}

最佳答案

您可以通过两种方式使用。Jake Wharton 的 View Pager 指示器

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

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

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

关于android - 滑动以更改 imageview-android 中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21990865/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com