91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android?Jetpack組件之ViewModel如何使用

發布時間:2023-05-09 15:48:09 來源:億速云 閱讀:74 作者:zzz 欄目:開發技術

本文小編為大家詳細介紹“Android Jetpack組件之ViewModel如何使用”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Android Jetpack組件之ViewModel如何使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

ViewModel的誕生

解決以下幾個問題:

  • 瞬態數據丟失

  • 異步調用的內存泄漏

當我們取以異步操作區網絡請求時,而我們又在網絡數據返回前點擊了“返回按鈕”,此時Activity 已經銷毀了,但是網絡請求的這個對象還在請求,且一直占據在內存里面。而 Activity 已經銷毀了,就在也拿不到 請求網絡的這個對象了,這就是內存泄漏了。

內存泄漏:一個對象我們已經引用(使用)不到它了,但它又占有著內存。GC 以為該對象還能夠使用,就沒有回收它。當這種情況過多,內存就會不斷被占用,就會導致手機卡頓。

Android?Jetpack組件之ViewModel如何使用

  • 類膨脹提高維護難度和測試難度

在 Activity 里面寫的代碼越來越多,導致維護難度和測試難度不斷提高。

ViewModel的作用

  • 它是介于 View(視圖)和 Model(數據模型)之間的橋梁

  • 使視圖和數據能夠分離也能保持通信

ViewModel的簡單應用

屏幕旋轉后用戶操作的數據仍然存在,即保存瞬時態數據。

Android?Jetpack組件之ViewModel如何使用

1. activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">
    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="0"
        android:textSize="24sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.247" />
    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="+"
        android:textSize="34sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:onClick="plusNumber"/>
</androidx.constraintlayout.widget.ConstraintLayout>

2. MyViewModel.java

MyViewModel 繼承自 ViewModle,里面有一個數據變量 number。

package com.example.viewmodel;
import androidx.lifecycle.ViewModel;
public class MyViewModel extends ViewModel {
    public int number;
}

3. MainActivity.java

通過 new ViewModelProvider.get() 方法來獲取到自定義的 MyViewModel 對象。

package com.example.viewmodel;
import androidx.appcompat.app.AppCompatActivity;
import androidx.lifecycle.ViewModelProvider;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
    private TextView textView;
    private MyViewModel viewModel;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = findViewById(R.id.textView);
        // 獲取到 MyViewModel
        viewModel = new ViewModelProvider(this,
                new ViewModelProvider.AndroidViewModelFactory(getApplication())).get(MyViewModel.class);
        textView.setText(String.valueOf(viewModel.number));
    }
    /**
     * 點擊 button 時,textView 的內容隨著 viewModel.number 的改變而改變
     */
    public void plusNumber(View view) {
        textView.setText(String.valueOf(++viewModel.number));
    }
}

ViewModel 的生命周期獨立于配置變化,不管 Activity 到了生命周期的那個階段,ViewModel 上的數據它都存在且可以訪問,即便 Activity 銷毀了 ViewModel 上的數據仍然存在。如下圖:

Android?Jetpack組件之ViewModel如何使用

注意:

不要向 ViewModel 里傳入 Context,會導致內存泄漏。如果要使用 Contetxt,那就使用 AndroidViewModel 中的 Application 來代替 Context。

public class MyViewModel extends AndroidViewModel

讀到這里,這篇“Android Jetpack組件之ViewModel如何使用”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

利津县| 锡林郭勒盟| 永德县| 招远市| 穆棱市| 桐城市| 肥乡县| 丘北县| 霍州市| 安多县| 许昌市| 墨竹工卡县| 云浮市| 西青区| 周宁县| 邻水| 平山县| 临泽县| 库伦旗| 龙岩市| 和平县| 稻城县| 田东县| 恩施市| 濮阳县| 广饶县| 平潭县| 鄂托克前旗| 泰宁县| 巴里| 永川市| 开阳县| 阜阳市| 武山县| 海口市| 深州市| 高陵县| 东港市| 宜昌市| 读书| 江西省|