当我打开此活动时,分配的内存从11MB变为近50MB ..
在此活动中,我只有一个带有图像的framelayout ..而且我使用onTouchEvent移动点图像..
有人可以告诉我为什么我会使用这么多内存吗?即使我按下后退按钮离开活动,分配的内存仍然是50MB
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="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:id="@+id/fl"
tools:context="it.uniroma3.sensorlog">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@mipmap/mappa"
android:id="@+id/map"/>
<ImageView
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@android:drawable/ic_notification_overlay"
android:id="@+id/dot"
/>
</FrameLayout>