我正在开发在线商店应用程序,我使用底部导航菜单和片段来分隔我的在线商店的页面,在我的主要片段中,我有一个滚动视图,其中包含一个图像滑块和两个用于显示最新和特殊产品的水平回收器视图。每件事都很好,但是我真正奇怪的问题是,当我在我的 android 手机中运行应用程序时,滚动视图的性能真的很差,它滚动得很慢而且不流畅。我尝试了很多方法来解决这个问题(但不幸的是它们都不能解决我的问题): - 我试图删除图像滑块库 - 我教过图像和位图可能是导致这种糟糕性能的主要原因,但是在我删除所有图像之后什么都没有变了!!!这是我的代码:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:background="#f6f6f6"android:layoutDirection="rtl"android:orientation="vertical"><ScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RelativeLayout android:id="@+id/slider_container" android:layout_width="wrap_content" android:layout_height="180dp"> <com.daimajia.slider.library.SliderLayout android:id="@+id/slider" android:layout_width="match_parent" android:layout_height="180dp" /> <com.daimajia.slider.library.Indicators.PagerIndicator android:id="@+id/custom_indicator" android:layout_width="wrap_content" android:layout_height="wrap_content" android:visibility="gone" />
添加回答
举报
0/150
提交
取消