package com.noahvogt.miniprojekt.ui.slideshow; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProvider; import com.noahvogt.miniprojekt.R; public class DraftFragment extends Fragment { private DraftViewModel draftViewModel; public static boolean DraftViewOn; public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { DraftViewOn = true; draftViewModel = new ViewModelProvider(this).get(DraftViewModel.class); View root = inflater.inflate(R.layout.fragment_slideshow, container, false); final TextView textView = root.findViewById(R.id.text_slideshow); draftViewModel.getText().observe(getViewLifecycleOwner(), new Observer() { @Override public void onChanged(@Nullable String s) { textView.setText(s); } }); return root; } }