在我的应用程序中,我在MainActvity中创建了一个列表视图,它打开了12个片段。要打开它们,我使用了fragmentTransaction.replace
。每个片段都有滑动标签和3个片段。在其中一个中我使用了两个滚动视图。我划分了屏幕
左右两边。就像这个[滚动视图|滚动视图]
我在布局文件中编写了每个代码。 (Java文件是空的我不知道写什么)。 滚动视图有什么。 (其中有20个项目)
<ScrollView
android:layout_width="0dp"
android:layout_height="match_parent"
android:isScrollContainer="false"
android:layout_weight="1">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:src="@drawable/akrep_ahmet_kural"/>
<TextView
android:layout_width="210dp"
android:layout_height="wrap_content"
android:background="@color/burc_akrep"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Ahmet Kural"
android:textColor="@color/white"
android:layout_gravity="center_horizontal"
android:gravity="center_horizontal"/>
<TextView
android:layout_width="210dp"
android:layout_height="wrap_content"
android:background="@color/burc_akrep"
android:text="10 Kasım 1982"
android:layout_gravity="center_horizontal"
android:gravity="center_horizontal"
android:textColor="@color/white" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:src="@drawable/akrep_alp_kirsan" />
<TextView
android:layout_width="210dp"
android:layout_height="wrap_content"
android:background="@color/burc_akrep"
.
.
.
问题是,当用户单击滚动视图选项卡时,它会缓慢但滚动没有滞后。然后用户返回内存使用保持不变。然后用户打开另一个滚动视图选项卡,内存使用量再次增加,它变得像楼梯。在那之后,关闭来了。
那该怎么办?
答案 0 :(得分:0)
您应该使用Listview
或RecyclerView
,因为它不会在开头加载所有视图,但只有可见的加上一两个,这将比您的方法资源密集程度更低。
答案 1 :(得分:0)
看起来你应该使用ListView和适配器。
另请注意,“wrap_content”对效率无益,因为更改宽度(例如,在TextView中设置宽度设置为“wrap_content”的文本)可能会导致整个视图被重新绘制,从而减慢速度在应用程序中。