其他分享
首页 > 其他分享> > Android Studio:在模拟器上测试时,水平滚动视图会冻结

Android Studio:在模拟器上测试时,水平滚动视图会冻结

作者:互联网

当我在模拟器上测试应用程序(具有“水平滚动视图”)时,滚动部分冻结在中间.有时,当我以其他方式滚动时,滚动会冻结.该应用程序不会冻结,因为后退按钮有效.这会冻结在实际的Android设备上,还是仅仅是我的模拟器做出反应?

这是我的滚动活动代码:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="namee.com.myapp.School"
android:background="#000000">

<HorizontalScrollView android:id="@+id/horizontalScroll"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:fadingEdgeLength="20dp"
    android:background="#000000">

   <LinearLayout
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:background="#000000">

       <ImageView android:src="@drawable/sunset3" android:layout_height="354dp" android:layout_width="600dp" />
       <ImageView android:src="@drawable/sunset3" android:layout_height="354dp" android:layout_width="600dp" />
       <ImageView android:src="@drawable/sunset3" android:layout_height="354dp" android:layout_width="600dp" />


       </LinearLayout>

</HorizontalScrollView>

这是日落3

http://postimg.org/image/5l69hadel/

解决方法:

我在Android设备(三星Galaxy S4 mini,Android 4.4.2)上进行了尝试,并且工作正常.模拟器可能存在一些问题(例如内存限制过低).

标签:android-activity,android-emulator,horizontalscrollview,android
来源: https://codeday.me/bug/20191029/1958168.html