Tag: android scroll

当使用CoordinatorLayout时,我的ScrollView的大小不正确

我在布局中使用ScrollView,并试图从devise支持库中使用新的CoordinatorLayout 。 我的布局文件如下所示: <android.support.design.widget.CoordinatorLayout 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"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> … </LinearLayout> </ScrollView> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <android.support.v7.widget.Toolbar … /> </android.support.design.widget.AppBarLayout> </android.support.design.widget.CoordinatorLayout> 当testing这个滚动视图只占据屏幕的一部分。 什么地方出了错?

如何做新的PlayStore视差效果

有谁知道我怎样才能实现新的视差滚动效果 – 当你在PlayStore上打开一个应用程序并尝试向下滚动时,你可以看到效果,内容超越了顶部图像。 我怎样才能做到这一点?

ScrollView里面的Recyclerview不能stream畅地滚动

对于我的应用程序,我在ScrollView里面使用了一个RecyclerView , RecyclerView根据它的内容使用这个库 。 滚动正在工作,但是当我滚动RecyclerView时,它不能正常工作。 当我滚动滚动查看本身,它滚动顺利。 我用来定义RecyclerView的代码: LinearLayoutManager friendsLayoutManager = new LinearLayoutManager(getActivity().getApplicationContext(), android.support.v7.widget.LinearLayoutManager.VERTICAL, false); mFriendsListView.setLayoutManager(friendsLayoutManager); mFriendsListView.addItemDecoration(new DividerItemDecoration(getActivity().getApplicationContext(), null)); ScrollView的RecyclerView : <android.support.v7.widget.RecyclerView android:layout_marginTop="10dp" android:layout_marginBottom="10dp" android:id="@+id/friendsList" android:layout_width="match_parent" android:layout_height="wrap_content" />

禁用在webview中滚动?

到目前为止,我只是一名iPhone开发人员,现在我决定给Android一个旋风。 我一直没能弄清楚的东西是如何以编程方式防止在WebView滚动? 类似iPhone防止onTouchMove事件将是伟大的!