嵌入在scrollview中时,查看寻呼机是不是很流畅?

时间:2013-01-14 20:44:09

标签: android image android-viewpager

我有像Play商店应用程序的要求,其中有图像和视频的视图寻呼机 滚动查看详细信息。不幸的是,当用户滚动时,滚动是跳跃的,但如果我删除滚动视图,则视图寻呼机工作完全正常。

布局外观就像这样 http://cl.ly/MBRB

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"  android:fillViewport="true">

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >



    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="160dp"
        android:background="@drawable/loading_image"
        android:gravity="top"
        android:orientation="vertical" >

        <android.support.v4.view.ViewPager
            android:id="@+id/product_image_pager"
            android:layout_width="fill_parent"
            android:layout_height="match_parent" />

        <com.viewpagerindicator.CirclePageIndicator
            android:id="@+id/titles"
            style="@style/CirclePageIndicator"
            android:layout_alignParentBottom="true"
            android:padding="10dip"
            android:paddingBottom="10dp" />
    </RelativeLayout>

    <include layout="@layout/app_screen_menu" />
</LinearLayout>
</ScrollView>

顺便说一下,我正在从服务器加载图片。

谢谢

1 个答案:

答案 0 :(得分:5)

您正在使用2个滚动条

  • viewpager使用scrolllistener
  • scrollview使用scrolllistener

这两个scrollistener正在争夺ScrollEvent。 您可以通过实施onInterceptTouch来解决此问题。在这种方法中,您可以决定谁赢得了ScrollEvent的战斗

关于包含2个滚动视图

的类似问题,请查看此protected post