正如我在上一个问题(Simple image gallery with HorizontalScrollView)中写的那样,我使用HorizontalScrollView在一个简单的图库中工作。现在,我正在解决以下任务:动态加载和显示图像,目标是在加载图像时,必须在显示屏上显示进度条。所以我使用android.os.AsyncTask来加载图像。但首先我制作了自定义水平滚动视图,用于添加和滚动图像,目标方法是 processScroll ,它是从android.widget.HorizontalScrollView的公共方法调用的 - android.lessons.custom_horizontal_scroll.ImageHorizontalScrollView#onFling,它看起来像:
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
Log.d("IHSV", "GestureDetectorListener onFling event. " +
"Info scrollX " + getScrollX() +
" Info velocityX " + velocityX +
" Info ev1X " + e1.getAxisValue(MotionEvent.AXIS_X) +
" Info ev2X " + e2.getAxisValue(MotionEvent.AXIS_X));
ev1X = (int) e1.getAxisValue(MotionEvent.AXIS_X);
ev2X = (int) e2.getAxisValue(MotionEvent.AXIS_X);
processScroll();
return true;
}
并且processScroll方法是
private void processScroll() {
boolean isForward = ev1X > ev2X;
boolean isPaging = isForward ? getImageSizeList().get(imageIndex)[0] / 2 >= ev2X :
getImageSizeList().get(imageIndex)[0] / 2 <= ev2X;
Log.d("IHSV", "processScroll imageIndex: " + imageIndex + " isForward: " + isForward + " isPaging: " + isPaging);
if (isPaging) {
boolean isSmoothScroll;
// to page forward
if (isForward) {
isSmoothScroll = imageIndex + 1 != imageItems.length;
imageIndex = ++imageIndex % imageItems.length;
} else {
// to page back
isSmoothScroll = imageIndex - 1 >= 0;
imageIndex = imageIndex - 1 < 0 ? imageItems.length - 1 : --imageIndex;
}
boolean isLoad = imageItems[imageIndex].isLoad;
if (!imageItems[imageIndex].isLoad) {
// show a progress bar
innerLayout.addView(getPbl());
}
if (isSmoothScroll) {
if (isLoad) {
smoothScrollTo(imageIndex * displayMetrics[0], 0);
} else {
innerLayout.scrollTo(imageIndex * displayMetrics[0], 0);
}
} else {
scrollTo(imageIndex * displayMetrics[0], 0);
}
// load an image in the background task
if (!imageItems[imageIndex].isLoad) {
ImageLoaderTask imgLoader = new ImageLoaderTask(this, innerLayout);
imgLoader.execute(imageItems[imageIndex].id);
}
} else {
smoothScrollTo(imageIndex * displayMetrics[0], 0);
}
}
在我制作加载图像之前,您可以看到我在内部布局中添加了一个进度条(水平滚动视图的单个子项)。 主要布局是
<?xml version="1.0" encoding="utf-8"?>
<android.lessons.custom_horizontal_scroll.ImageHorizontalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/horizontalScrollView"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<!-- **the inner layout** -->
<LinearLayout android:orientation="horizontal"
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="match_parent">
</LinearLayout>
</android.lessons.custom_horizontal_scroll.ImageHorizontalScrollView>
进度条布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/progress_bar_layout"
android:orientation="horizontal"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ProgressBar android:id="@+id/progress_bar"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
</LinearLayout>
加载图片的任务就像那样
public class ImageLoaderTask extends AsyncTask<Integer, String, String> {
@Override
protected String doInBackground(Integer... params) {
// load an image
}
@Override
protected void onPostExecute(String result) {
// remove the progess bar
innerLayout.removeView(innerLayout.findViewById(R.id.progress_bar_layout));
// add the load image
innerLayout.addView(addImageView);
...
}
}
我通过以下方法对进度条进行了充气:
View getPbl() {
if (pbl == null) {
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
pbl = inflater.inflate(R.layout.progress_bar, this, false);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(displayMetrics[0],
displayMetrics[1]);
lp.gravity = Gravity.FILL_HORIZONTAL | Gravity.CENTER_VERTICAL;
pbl.setLayoutParams(lp);
}
return pbl;
}
所以,让我们回答一下问题: 1)我在processScroll方法中调用 innerLayout.scrollTo(...),因为android.widget.HorizontalScrollView#smoothScrollTo不起作用:它没有滚动到进度条视图,为什么它会这样?它在加载图像后自动滚动(在完成ImageLoaderTask#onPostExecute方法之后)。
2)所以用 innerLayout.scrollTo(...)我得到一个奇怪的行为:第一个滚动工作正常,下一个滚动没有添加图像在负载图像所在的位置留下黑色空间:)。所以我认为View#addView和View #removeView无法正常工作,但为什么呢?我应该调用水平滚动视图的任何刷新方法吗?
答案 0 :(得分:0)
很简单。我需要使用在添加视图后使用小的挂起调用的View.onLayout方法。由于我重写了HorizontalScrollView#onLayout方法。