如何使用 Single Live Event 在 Kotlin 中显示 toast

Mj *_*hoi 3 android kotlin mutablelivedata

我想使用单个实时事件类来显示吐司(如标志)这是我尝试过的代码。我不想使用类似标志的 peding 。我如何解决它?

主视图模型

class MainViewModel(private val movieRepository: MovieRepository) : ViewModel() {
    val keyword = MutableLiveData<String>()
    val movieList = MutableLiveData<List<Movie>>()
    val msg = MutableLiveData<String>()
    val pending: AtomicBoolean = AtomicBoolean(false)

    fun findMovie() {
        val keywordValue = keyword.value ?: return
        pending.set(true)
        if (keywordValue.isNullOrBlank()) {
            msg.value = "emptyKeyword"
            return
        }
        movieRepository.getMovieData(keyword = keywordValue, 30,
            onSuccess = {
                if (it.items!!.isEmpty()) {
                    msg.value = "emptyResult"
                } else {
                    msg.value = "success"
                    movieList.value = it.items
                }
            },
            onFailure = {
                msg.value = "fail"
            }
        )
    }
}
Run Code Online (Sandbox Code Playgroud)

主要活动

 private fun viewModelCallback() {
        mainViewModel.msg.observe(this, {
            if (mainViewModel.pending.compareAndSet(true, false)) {
                when (it) {
                    "success" -> toast(R.string.network_success)
                    "emptyKeyword" -> toast(R.string.keyword_empty)
                    "fail" -> toast(R.string.network_error)
                    "emptyResult" -> toast(R.string.keyword_result_empty)
                }
            }
        })
}
Run Code Online (Sandbox Code Playgroud)

Nhấ*_*ang 7

解决方案

步骤 1.将其复制SingleLiveEvent.kt到您的应用程序

/*
 *  Copyright 2017 Google Inc.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package com.example.myapp;

import android.util.Log;

import androidx.annotation.MainThread;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.Observer;

import java.util.concurrent.atomic.AtomicBoolean;

/**
 * A lifecycle-aware observable that sends only new updates after subscription, used for events like
 * navigation and Snackbar messages.
 * <p>
 * This avoids a common problem with events: on configuration change (like rotation) an update
 * can be emitted if the observer is active. This LiveData only calls the observable if there's an
 * explicit call to setValue() or call().
 * <p>
 * Note that only one observer is going to be notified of changes.
 */
public class SingleLiveEvent<T> extends MutableLiveData<T> {

    private static final String TAG = "SingleLiveEvent";

    private final AtomicBoolean mPending = new AtomicBoolean(false);

    @MainThread
    public void observe(@NonNull LifecycleOwner owner, @NonNull Observer<? super T> observer) {
        if (hasActiveObservers()) {
            Log.w(TAG, "Multiple observers registered but only one will be notified of changes.");
        }
        // Observe the internal MutableLiveData
        super.observe(owner, t -> {
            if (mPending.compareAndSet(true, false)) {
                observer.onChanged(t);
            }
        });
    }

    @MainThread
    public void setValue(@Nullable T t) {
        mPending.set(true);
        super.setValue(t);
    }

    /**
     * Used for cases where T is Void, to make calls cleaner.
     */
    @MainThread
    public void call() {
        setValue(null);
    }
}
Run Code Online (Sandbox Code Playgroud)

第2步。从您的代码中使用。

主视图模型

class MainViewModel(private val movieRepository: MovieRepository) : ViewModel() {
    val keyword = MutableLiveData<String>()
    val movieList = MutableLiveData<List<Movie>>()
    val msg = SingleLiveEvent<String>()

    fun findMovie() {
        val keywordValue = keyword.value ?: return
        if (keywordValue.isNullOrBlank()) {
            msg.value = "emptyKeyword"
            return
        }
        movieRepository.getMovieData(keyword = keywordValue, 30,
            onSuccess = {
                if (it.items!!.isEmpty()) {
                    msg.value = "emptyResult"
                } else {
                    msg.value = "success"
                    movieList.value = it.items
                }
            },
            onFailure = {
                msg.value = "fail"
            }
        )
    }
}
Run Code Online (Sandbox Code Playgroud)

主要活动

private fun viewModelCallback() {
    mainViewModel.msg.observe(this, {
        when (it) {
            "success" -> toast(R.string.network_success)
            "emptyKeyword" -> toast(R.string.keyword_empty)
            "fail" -> toast(R.string.network_error)
            "emptyResult" -> toast(R.string.keyword_result_empty)
        }
    })
}
Run Code Online (Sandbox Code Playgroud)


Eld*_*opj 5

如果您使用 Kotlin 并且仅用于数据/事件的一次性触发,而不是 SingleLiveEvent MutableSharedFlow

例子:

// init
val data = MutableSharedFlow<String>()

// set value
data.emit("hello world)

lifecycleScope.launchWhenStarted {
      data.collectLatest { 
          // value only collect once unless a new trigger come
      }
}
Run Code Online (Sandbox Code Playgroud)

MutableSharedFlow不会触发方向变化或返回到上一个片段等