在我的应用程序登录屏幕后,我被定向到主页,但我的主页在bottom.The滚动,我的主页代码在下面,它由LinearLayout内部的ParallaxScrollView组成。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:theme="@style/AppTheme1">
<com.nirhart.parallaxscroll.views.ParallaxScrollView
android:id="@+id/parallaxScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:visibility="gone"
app:parallax_factor="1.9"
tools:context=".LandingActivity">
/* Here there is a Relative Layout inside a Linear Layout which consists of two SliderLayout and HorizontalRecyclerView*/
</com.nirhart.parallaxscroll.views.ParallaxScrollView>
<RelativeLayout
android:id="@+id/loadingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:visibility="visible">
<ProgressBar
style="@style/CustomProgressDialogWithTransparentBackground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:indeterminateDrawable="@drawable/custom_progress_dialog" />
</RelativeLayout>
</LinearLayout>发布于 2017-02-24 16:46:56
scrollViewEventDetails.fullScroll(View.FOCUS_UP);//if you move at the end of the scroll试试看。
https://stackoverflow.com/questions/42433603
复制相似问题