0

我正在为一个学校项目学习 Android,我们必须使用 Java,我们不能使用任何外部库。我正在创建一个大学生课程负载跟踪应用程序。目前,我正在开展一项活动,该活动将详细说明Course用户选择的信息。当用户选择 a 时,我需要能够获取多个数据库结果CourseMentor(Instructor)、a LiveData Listof Assessments 和 a LiveData Listof Notes。我目前有一个Transformations.switchMap设置并正在努力获得Course Mentor. 然而,它似乎LiveData只能有一个这种转换观察者。这是我的代码:

课程详情视图模型

LiveData<Course> currentCourse;
LiveData<Mentor> courseMentor;
LiveData<List<Assessment>> courseAssessments;
LiveData<List<Note>> courseNotes;
final CourseDetailRepository REPO;

public CourseDetailViewModel(@NonNull Application application) {

    REPO = new CourseDetailRepository(application);
}

public LiveData<Course> getCurrentCourse(long id) {

    if (currentCourse == null) {
        currentCourse = REPO.getCourseById(id);
    }

    // I'm dong the Transformations here because I tried in the Constructor but because currentCourse
    // was null, the transformation wasn't kicking off.
    // the courseMentor Transformation works, the others don't seem to fire.
    courseMentor = Transformations.switchMap(curentCourse, course -> 
        REPO.getMentorById(course.getMentorId()));

    courseAssessments = Transformations.switchMap(currentCourse, course -> 
        REPO.getAssessmentsByCourse(course.getCourseId()));

    courseNotes = Transformations.switchMap(currentCourse, course -> 
        REPO.getNotesByCourse(course.getCourseId())));

    return this.currentCourse;
}

public LiveData<Mentor> getCourseMentor() { return this.courseMentor }

public LiveData<List<Assessment>> getCourseAssessments() { return this.courseAssessments }

public LiveData<List<Note>> getCourseNotes() { return this.courseNotes }

然后我观察这些LiveData对象在我CourseDetailActivity的 UI 中填充:Mentor填充 a 集 a 的选择SpinnerList<Assessment>List<Note>传递到它们各自RecyclerView Adapter的 s 中。

我有一种感觉,我可以使用类似的东西,MediatorLiveData但是,我真的不完全理解如何正确使用它,即使在网上查看了许多资源之后。我是 Android 新手,这是我的第一个 Android 项目,所以我知道我有很多东西要学,而且我完全愿意接受对设计决策的批评。

非常感谢您的帮助!

4

1 回答 1

0

好的,我能够弄清楚!通过添加一个MutableLiveData<Long>来保存用于Course从数据库中检索 的 ID,我可以从 中设置值,该值getCourseById(long id)会触发第一个Transformations.switchMap获取的值,它会为 和设置CURRENT_COURSE其他Transformations.switchMaps 。COURSE_MENTORCOURSE_ASSESSMENTSCOURSE_NOTES

有人在其他地方建议我通过 传递 IDViewModel Constructor并使用 custom ViewModelFactory,这是我将来会研究的东西。现在,我需要提交这个;)。

我希望这对其他人有帮助!

课程详情视图模型

final MutableLiveData<Long> CURRENT_COURSE_ID;
final LiveData<Course> CURRENT_COURSE;
final LiveData<Mentor> COURSE_MENTOR;
final LiveData<List<Assessment>> COURSE_ASSESSMENTS;
final LiveData<List<Note>> COURSE_NOTES;
final CourseDetailRepository REPO;

public CourseDetailViewModel(@NonNull Application application) {

    REPO = new CourseDetailRepository(application);

    CURRENT_COURSE_ID = new MutableLiveData<>();

    CURRENT_COURSE = Transformations.switchMap(CURRENT_COURSE_ID, 
        COURSE_ID -> REPO.getCourseById(COURSE_ID));

    COURSE_MENTOR = Transformations.switchMap(CURRENT_COURSE, 
        COURSE -> REPO.getMentorById(COURSE.getMentorId()));

    COURSE_ASSESSMENTS = Transformations.switchMap(CURRENT_COURSE, 
        COURSE -> REPO.getAssessmentsByCourse(COURSE.getCourseId()));

    COURSE_NOTES = Transformations.switchMap(CURRENT_COURSE, 
        COURSE -> REPO.getNotesByCourse(COURSE.getCourseId())));
}

public LiveData<Course> getCurrentCourse(long id) {
    CURRENT_COURSE_ID.setValue(id);
    return this.CURRENT_COURSE;
}

public LiveData<Mentor> getCourseMentor() { return this.COURSE_MENTOR}

public LiveData<List<Assessment>> getCourseAssessments() { return this.COURSE_ASSESSMENTS}

public LiveData<List<Note>> getCourseNotes() { return this.COURSE_NOTES}
于 2020-05-01T17:22:24.287 回答