gpt4 book ai didi

java - 在android中滚动图像

转载 作者:行者123 更新时间:2023-11-30 04:40:02 25 4
gpt4 key购买 nike

我写了一些这样的代码来自动滚动图像:

scroll=(ImageView)findViewById(R.id.pesancredit);
Thread t = new Thread(){
public void run(){
int y = scroll.getScrollY();
int x = scroll.getScrollX();
while(y<1600){
scroll.scrollTo(x, y);
y++;
try {
sleep(1000/12);
} catch (InterruptedException e) {
}
}
}
};
t.start();

但是,它不起作用。谁能帮帮我?

最佳答案

您需要在 UI 线程上调用 scrollTo 方法。为此,您需要使用处理程序。这样的事情应该有效:

// declare a class field:
final Handler h = new Handler();

// later:
scroll=(ImageView)findViewById(R.id.pesancredit);
Thread t = new Thread(){
public void run(){
int y = scroll.getScrollY();
int x = scroll.getScrollX();
while(y<1600){
// need final values to create anonymous inner class
final int X = x;
final int Y = y;
h.post(new Runnable() {
public void run() {
scroll.scrollTo(X, Y);
}
});
y++;
try {
sleep(1000/12);
} catch (InterruptedException e) {
}
}
}
};
t.start();

关于java - 在android中滚动图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6147469/

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