23

我有一个 ViewPager 包含同一片段的多个实例,这个片段包含一篇文章。文章视图层次结构非常简单,一个标题、一个横幅图像、一个副标题和一个正文;除了标题之外的所有内容都包含在滚动视图中。

问题是,当您滑动到新页面时,片段会在顶部显示视图,然后立即滚动到容器中间。(事实上​​,它会滚动到带有 id: article_content的 TextView 的开头)

我已经在问题的底部发布了布局。

现在, ViewPager 设置了一个简单的 a 实现FragmentStatePagerAdapter,代码如下:

class ScreenSlidePagerAdapter extends FragmentStatePagerAdapter {

    Bundle args;
    int count;

    public ScreenSlidePagerAdapter(FragmentManager fm) {
        super(fm);
        this.count = 8;
    }

    @Override
    public Fragment getItem(int position) {
        ArticleFragment mPrimaryFragment = new ArticleFragment();
        args = new Bundle();
        args.putString(ArticleFragment.KEY_ARTICLE_URL, mCurArticleLink);
        mPrimaryFragment.setArguments(args);
        return mPrimaryFragment;            
    }

    @Override
    public int getCount() {
        return count;
    }   
}

Fragment 本身也很简单。首先,我检查一下onCreate我们是否有缓存文章,我调用onCreateView

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    View view = inflater.inflate(R.layout.apk_article_view, null);

    mTitle = (TextView) view.findViewById(R.id.article_title);
    mBanner = (ImageView) view.findViewById(R.id.article_banner);
    mSubTitle = (TextView) view.findViewById(R.id.article_subtitle);
    mContent = (TextView) view.findViewById(R.id.article_content);

    if (isArticleCached) {
        Constants.logMessage("Article is cached, loading from database");
        setApkArticleContent();
    }
    else {
        Constants.logMessage("Article isn't cached, downloading");
        HtmlHelper.setApkArticleContent(mContext, mUrl, mTitle, mSubTitle, mContent, mBanner);
        setRefreshing(true);
    }

    return view;
}

值得注意的是,这setApkArticleContent是一组简单的 Texts,没什么花哨的:

private void setApkArticleContent() {
    mTitle.setText(Html.fromHtml(mCursor.getString(mCursor.getColumnIndex(DbOpenHelper.TITLE))));
    mSubTitle.setText(Html.fromHtml(mCursor.getString(mCursor.getColumnIndex(DbOpenHelper.SUBTITLE))));
    mContent.setText(Html.fromHtml(mCursor.getString(mCursor.getColumnIndex(DbOpenHelper.BODY))));
    UrlImageViewHelper.setUrlDrawable(mBanner, mCursor.getString(mCursor.getColumnIndex(DbOpenHelper.BANNER)));     
}

另外,请知道我之前没有寻呼机,片段只加载到一个空的活动中,并且它在没有滚动到滚动视图中间的情况下工作

我真的不确定是什么触发了滚动,是的,我知道我可以以编程方式将其设置为在加载后滚动回顶部,但话又说回来,当片段加载时,这将是两个滚动动作,它会是对用户来说非常明显。

你们有什么想法为什么会这样?关于如何阻止无意滚动的任何想法?

谢谢,

下面是 ArticleFragment 的布局:

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

<TextView
    android:id="@+id/article_title"
    style="@style/headerTextBoldNoUnderline"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="left|center_vertical"
    android:text="" />

<ScrollView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    >

    <LinearLayout
        android:orientation="vertical"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >

        <ImageView
            android:id="@+id/article_banner"
            android:layout_gravity="center_vertical|center_horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="12dp" />

        <TextView
            android:id="@+id/article_subtitle"
            style="@style/HeaderTextItalicNoUnderline"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="left|center_vertical" />

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="?android:attr/dividerVertical" />

        <TextView
            android:id="@+id/article_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="sans-serif-light"
            android:gravity="left|center_vertical"
            android:padding="8dp"
            android:textColor="?android:attr/textColorSecondary"
            android:textIsSelectable="true"
            android:textSize="16sp" />
    </LinearLayout>
</ScrollView>

</LinearLayout>
4

6 回答 6

32

这很可能是由android:textIsSelectable. 您可以尝试将以下内容添加到 ScrollView:

android:focusable="true"
android:focusableInTouchMode="true"
android:descendantFocusability="beforeDescendants"
于 2013-04-24T03:23:08.853 回答
10

将此属性值添加android:descendantFocusability="blocksDescendants"到 ScrollView 的子项,根据这个问题:How to prevent a scrollview from scrolling to a webview after data is loaded?

于 2013-09-10T12:33:38.060 回答
2

我也有这个问题。我通过设置android:focusable="true"android:focusableInTouchMode="true"ScrollView 的 LinearLayout 中的第一个元素解决了它。

于 2013-07-08T22:29:42.957 回答
2

我尝试添加

    android:focusable="true"
    android:focusableInTouchMode="true"
    android:descendantFocusability="beforeDescendants"

在根 viewGroup 中。它的工作很好。如下所示。

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:descendantFocusability="beforeDescendants"
    android:background="@color/normal_bg">

    <ScrollView
        android:id="@+id/scroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/rl_enter"
        android:scrollbars="none">
        </ScrollView>
    </RelativeLayout>
于 2017-07-28T08:44:45.173 回答
0

我尝试了解决方案:

android:focusable=true

android:focusableInTouchMode=true

android:descendantFocusability=beforeDescendants

而且我不知道为什么,但我不能用作为父视图的 RelativeLayout 来做到这一点(这不起作用)。

我不得不将我的 TextView 包装在 FrameLayout 中,现在一切正常。也许这对某人有帮助。

  <FrameLayout
        android:id="@+id/detail_description_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/detail_parameters_container"
        android:layout_centerInParent="true"
        android:descendantFocusability="beforeDescendants"
        android:focusable="true"
        android:focusableInTouchMode="true" >

        <TextView
            android:id="@+id/detail_descritpion"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:autoLink="all"
            android:padding="10dp"
            android:textIsSelectable="true" />
    </FrameLayout>
于 2013-09-13T08:36:39.610 回答
0

ScrollView里面ViewPager会自动滚动,但不会在中间滚动.. 看看这个。

pager.setOnPageChangeListener(new OnPageChangeListener() {

                @Override
                public void onPageSelected(int position) {
                    // TODO Auto-generated method stub
                    int x=iv.getLeft();
                    int y=iv.getTop();
                    scroll.scrollTo(x, y);
                }

pagerisViewPager的对象 and scrollis ScrollViewand ivis any Viewsay TextViewor ImageView.

当我们在 viewpager 中更改页面时,滚动条会自动滚动到左侧。如果您能找到中间的解决方案,请告诉我.. :)

于 2014-01-23T10:15:10.490 回答