<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
目前,我在開發的一個 Android 專案需要各個功能做到線上動態化,其中,App 啟動時顯示的 Loading 模組,會優先檢測載入遠端的 Loading 模組,載入失敗時,會使用 App 本身預設的 Loading 檢視,為此,我編寫了一個 LoadingLoader 工具類:
/** * Loading 載入器 * * @author GitLqr * @since 2022/7/2 */ object LoadingLoader { private var isInited = false // 防止多次初始化 private lateinit var onLoadFail: () -> Unit // 遠端loading載入失敗時的回撥 private lateinit var onLoadComplete: () -> Unit // 載入完成後回撥(無論成功失敗) fun init(onLoadFail: () -> Unit = {}, onLoadComplete: () -> Unit = {}): LoadingLoader { if (!isInited) { this.onLoadFail = onLoadFail this.onLoadComplete = onLoadComplete isInited = true } else { log("you have inited, this time is not valid") } return this } fun go() { if (isInited) { loadRemoteLoading(callback = { isSuccess -> if (!isSuccess) onLoadFail() onLoadComplete() }) } else { log("you must invoke init() firstly") } } private fun loadRemoteLoading(callback: (boolean: Boolean) -> Unit) { // 模擬遠端 Loading 模組載入失敗 Handler(Looper.getMainLooper()).postDelayed({ callback(false) }, 1000) } private fun log(msg: String) { Log.e("LoadingUpdater", msg) } }
LoadingLoader 工具類使用 Kotlin 的單例模式,init()
方法接收 2 個回撥引數,go()
方法觸發載入遠端 Loading 模組,並根據載入結果執行回撥,其中 isInited
用於防止該工具類被初始化多次。然後,在 App 的主入口 LoadingActivity 中使用 LoadingLoader,當載入遠端 Loading 模組失敗時,將原本隱藏的預設 Loading 檢視顯示出來;當載入 Loading 模組完成後(無論成功失敗),模擬初始化資料並跳轉主介面,關閉 LoadingActivity:
/** * App 啟動時的 Loading 介面 * * @author GitLqr * @since 2022/7/2 */ class LoadingActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_loading) // Loading 模組載入器 LoadingLoader.init(onLoadFail, onLoadComplete).go() } override fun onDestroy() { super.onDestroy() Log.e("GitLqr", "onDestroy") } private val onLoadFail: () -> Unit = { // 顯示預設 loading 介面 findViewById<View>(R.id.cl_def_loading).setVisibility(View.VISIBLE) } private val onLoadComplete: () -> Unit = { // 模擬初始化資料,1秒後跳轉主介面 Handler(Looper.getMainLooper()).postDelayed({ val intent = Intent(this, MainActivity::class.java) intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK) // 注意:此處意圖使用的 flag,會將 LoadingActivity 介面關閉,觸發 onDestroy() startActivity(intent) }, 1000) } }
LoadingActivity 的 xml 佈局程式碼如下,預設的 Loading 佈局初始狀態不可見,即 visibility="gone"
:
<?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:background="@color/black"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/cl_def_loading" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#f00" android:visibility="gone" tools:visibility="visible"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:text="很好看的預設loading介面" android:textColor="@color/white" android:textSize="60dp" /> <ProgressBar android:id="@+id/pb_loading" android:layout_width="0dp" android:layout_height="0dp" android:indeterminateDrawable="@drawable/anim_loading" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintDimensionRatio="1" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.75" app:layout_constraintWidth_percent="0.064" /> </androidx.constraintlayout.widget.ConstraintLayout> </FrameLayout>
以上程式碼比較簡單,現在來看下演示效果:
這裡會發現一個問題,因為是以清空棧的方式啟動 MainActivity,所以第二次啟動時,理論上應該會跟第一次啟動時介面顯示效果完全一致,即每次啟動都會顯示預設的 Loading 檢視,但是實際情況並沒有,而控制檯的紀錄檔也證實了 LoadingActivity 的 onDestroy() 有被觸發:
難道第二次啟動 App 時,LoadingActivity.onLoadFail 沒有觸發嗎?加上紀錄檔驗證一下:
class LoadingActivity : AppCompatActivity() { ... private val onLoadFail: () -> Unit = { // 顯示預設 loading 介面 val defLoading = findViewById<View>(R.id.cl_def_loading) defLoading.setVisibility(View.VISIBLE) Log.e("GitLqr", "defLoading.setVisibility --> ${defLoading.visibility}") } }
重新打包再執行一遍上面的演示操作,紀錄檔輸出如下:
說明 2 次啟動都是有觸發 LoadingActivity.onLoadFail 的,並且結果都是 0 ,即 View.VISIBLE。
此時有點懷疑人生,於是網上找了一圈
setVisibility() 失效
的原因,基本上都是同一個內容(都特麼抄來抄去的),說是做動畫導致的,可是我這裡並沒有做動畫,所以與網上說的情況不相符。
既然,程式碼有輸出紀錄檔,那說明 setVisibility(View.VISIBLE)
這行程式碼肯定執行過了,而介面上不顯示,直接原因是什麼?是因為預設 Loading 檢視的 visibility 依舊為 View.GONE?又或者是因為其他因素導致 View 的尺寸出現了問題?這時,可以使用 AndroidStudio 的 Layout Inspector 工具,可以直觀的分析介面的佈局情況,為了方便 Layout Inspector 工具獲取 LoadingActivity 的佈局資訊,需要將 LoadingActivity.onLoadComplete 中跳轉主介面的程式碼註釋掉,其他保持不變:
class LoadingActivity : AppCompatActivity() { ... private val onLoadComplete: () -> Unit = { // 模擬初始化資料,1秒後跳轉主介面 Handler(Looper.getMainLooper()).postDelayed({ // val intent = Intent(this, MainActivity::class.java) // intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) // intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK) // // 注意:此處意圖的 flag,會將 LoadingActivity 介面關閉,觸發 onDestroy() // startActivity(intent) }, 1000) } }
然後重複上述演示操作,第一次啟動,顯示出預設 Loading,手動按返回鍵退出 App,再第二次啟動,不顯示預設 Loading:
控制檯紀錄檔資訊也如期輸出,第二次啟動確實執行了 setVisibility(View.VISIBLE)
:
這時,使用 Layout Inspector(選單欄 -> Tools -> Layout Inspector),獲取到 LoadingActivity 的佈局資訊:
這裡可以斷定,就是預設 Loading 檢視的 visibility 依舊為 View.GONE 的情況。
注:因為 View.GONE 不佔據螢幕空間,所以寬高都為 0,是正常的。
現在回顧一下上述的 2 個線索,首先,程式碼中確定執行了 setVisibility(View.VISIBLE)
,並且紀錄檔裡也顯示了該檢視的顯示狀態為 0,即 View.VISIBLE:
其次,使用 Layout Inspector 看到的的檢視狀態卻為 View.GONE:
所以,真相只有一個,紀錄檔輸出的檢視 和 Layout Inspector 看到的的檢視,肯定不是同一個!!為了驗證這一點,程式碼再做如下調整,分別在 onCreate() 和 onLoadFail 中列印預設 Loading 檢視資訊:
class LoadingActivity : AppCompatActivity() { ... override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_loading) val defLoading = findViewById<View>(R.id.cl_def_loading) Log.e("GitLqr", "onCreate ---> view is ${defLoading}") // Loading 模組載入器 LoadingLoader.init(onLoadFail, onLoadComplete).go() } private val onLoadFail: () -> Unit = { // 顯示預設 loading 介面 val defLoading = findViewById<View>(R.id.cl_def_loading) defLoading.setVisibility(View.VISIBLE) Log.e("GitLqr", "defLoading.setVisibility --> ${defLoading.visibility}, view is ${defLoading}") } }
再如上述演示操作一遍,紀錄檔輸出如下:
可以看到第二次啟動時,LoadingActivity.onLoadFail 中操作的檢視,還是第一次啟動時的那個檢視,該檢視是通過 findViewById 獲取到的,說明 LoadingActivity.onLoadFail 中參照的 Activity 是第一次啟動時的 LoadingActivity,也就是說 LoadingActivity 發生記憶體洩露了。此時才煥然大悟,Kotlin 中的 Lambda 表示式(像 onLoadFail、onLoadComplete 這種),對應到 Java 中就是匿名內部類,通過 Kotlin Bytecode 再反編譯成 java 程式碼可以驗證這點:
public final class LoadingActivity extends AppCompatActivity { private final Function0 onLoadFail = (Function0)(new Function0() { // $FF: synthetic method // $FF: bridge method public Object invoke() { this.invoke(); return Unit.INSTANCE; } public final void invoke() { View defLoading = LoadingActivity.this.findViewById(1000000); defLoading.setVisibility(0); StringBuilder var10001 = (new StringBuilder()).append("defLoading.setVisibility --> "); Intrinsics.checkExpressionValueIsNotNull(defLoading, "defLoading"); Log.e("GitLqr", var10001.append(defLoading.getVisibility()).append(", view is ").append(defLoading).toString()); } }); private final Function0 onLoadComplete; protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.setContentView(1300004); View defLoading = this.findViewById(1000000); Log.e("GitLqr", "onCreate ---> view is " + defLoading); LoadingLoader.INSTANCE.init(this.onLoadFail, this.onLoadComplete).go(); } protected void onDestroy() { super.onDestroy(); Log.e("GitLqr", "onDestroy"); } public LoadingActivity() { this.onLoadComplete = (Function0)null.INSTANCE; } }
我們知道,Java 中,匿名內部類會持有外部類的參照,即匿名內部類範例 onLoadFail 持有 LoadingActivity 範例,而 onLoadFail 又會通過 LoadingLoader.init()
方法傳遞給 LoadingLoader 這個單例物件,所以間接導致 LoadingLoader 持有了 LoadingActivity,因為單例生命週期與整個 App 程序相同,所以只要 App 程序不死,記憶體中就只有一分 LoadingLoader 範例,又因為是強參照,所以 GC 無法回收掉第一次初始化時傳遞給 LoadingLoader 的 LoadingActivity 範例,所以,無論重啟多少次,onLoadFail 中永遠都是拿著第一次啟動時的 LoadingActivity 來執行 findViewById,拿到的 Loading 檢視自然也不會是當前最新 LoadingActivity 的 Loading 檢視。
既然知道是因為 LoadingActivity 記憶體洩露導致的,那麼解決方案也簡單,就是在 LoadingLoader 完成它的使命之後,及時釋放掉對 LoadingActivity 的參照即可,又因為 LoadingActivity 實際上並不是被 LoadingLoader 直接參照,而是被其內部變數 onLoadFail 直接參照的,那麼在 LoadingLoader 中只需要將 onLoadFail 的參照切斷就行了:
object LoadingLoader { private var isInited = false // 防止多次初始化 private lateinit var onLoadFail: () -> Unit // 遠端loading載入失敗時的回撥 private lateinit var onLoadComplete: () -> Unit // 載入完成後回撥 fun go() { if (isInited) { loadRemoteLoading(callback = { isSuccess -> if (!isSuccess) onLoadFail() onLoadComplete() destroy() // 使命完成,釋放資源 }) } else { log("you must invoke init() firstly") } } fun destroy() { this.onLoadFail = {} this.onLoadComplete = {} this.isInited = false } }
至此,因記憶體洩露導致 setVisibility() 失效的問題就解決掉了
到此這篇關於記憶體洩露導致Android 中setVisibility() 失效原理的文章就介紹到這了,更多相關Android setVisibility()失效內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45