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

时间:2014-08-29 21:19:19

标签: android android-activity android-emulator horizontalscrollview

当我在我的模拟器上测试我的应用程序(具有水平滚动视图)时,滚动部分在中间冻结。当我向另一个方向滚动时,滚动有时会冻结。应用程序不会因为后退按钮的工作而冻结。这会冻结在一个真正的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>

这是sunset3

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

3 个答案:

答案 0 :(得分:3)

对我来说,关闭“使用主机GPU”功能可以在模拟器中滚动时解决冻结问题。

答案 1 :(得分:1)

在我的情况下 - 垂直滚动条 - 这是API编号的问题。 使用主机GPU,RAM 512和VM堆32(也尝试256)在2个AVD上运行相同的程序。

API 21工作,API 19冻结。增加VM堆并没有解决问题,但我确认禁用主机GPU工作(显然所有都变得非常慢)。

答案 2 :(得分:0)

我在我的Android设备(三星Galaxy S4 mini,Android 4.4.2)上试过它,它运行正常。这可能是仿真器的一些问题(例如内存限制太低)。