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

溫馨提示×

溫馨提示×

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

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

Android如何通過ViewModel保存數據實現多頁面的數據共享功能

發布時間:2021-09-27 15:31:00 來源:億速云 閱讀:151 作者:小新 欄目:編程語言

小編給大家分享一下Android如何通過ViewModel保存數據實現多頁面的數據共享功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

通過ViewModel實現的數據共享符合Android的MVC設計模式,將數據獨立出來

實現的Demo

1、主頁面通過SeekBar 來改變數字的值

2、點擊進入就進入第二個界面,但是數據還是共享的

3、隨便加兩個數字上去,再次切換

4、發現數據還是共享的

下面是具體實現步驟:

1、建立兩個Fragment(使用了Binding 和 Navigation)

一點要添加Binding 和 Navigation 不然做不了

2、建立一個繼承于ViewModel的類

3、分別在兩個Fragment的代碼中使用繼承于ViewModel的那個類,就可以實現數據共享

下面是具體代碼:

1、繼承于ViewModel的類

package com.example.naviation01;import androidx.lifecycle.MutableLiveData;import androidx.lifecycle.ViewModel;public class MyViewMode extends ViewModel {  private MutableLiveData<Integer> number;  public MutableLiveData<Integer> getNumber(){    if(this.number == null){      this.number = new MutableLiveData<>();      this.number.setValue(0);    }    return this.number;  }  public void add(int x){    this.number.setValue(this.number.getValue()+x);    if(this.number.getValue() < 0){      this.number.setValue(0);    }  }}

2、Fragment 主頁

package com.example.naviation01;import android.os.Bundle;import androidx.databinding.DataBindingUtil;import androidx.fragment.app.Fragment;import androidx.fragment.app.FragmentController;import androidx.lifecycle.ViewModel;import androidx.lifecycle.ViewModelProvider;import androidx.lifecycle.ViewModelProviders;import androidx.navigation.NavController;import androidx.navigation.Navigation;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.SeekBar;import com.example.naviation01.databinding.FragmentHomeBinding;/** * A simple {@link Fragment} subclass. */public class HomeFragment extends Fragment {  public HomeFragment() {    // Required empty public constructor  }  @Override  public View onCreateView(LayoutInflater inflater, ViewGroup container,               Bundle savedInstanceState) {    // Inflate the layout for this fragment    final MyViewMode myViewMode;    myViewMode = ViewModelProviders.of(getActivity()).get(MyViewMode.class);    FragmentHomeBinding binding;    binding = DataBindingUtil.inflate(inflater,R.layout.fragment_home,container,false);    binding.setData(myViewMode);    binding.setLifecycleOwner(getActivity());    binding.seekBar.setProgress(myViewMode.getNumber().getValue());    binding.seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {      @Override      public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {        myViewMode.getNumber().setValue(progress);      }      @Override      public void onStartTrackingTouch(SeekBar seekBar) {      }      @Override      public void onStopTrackingTouch(SeekBar seekBar) {      }    });    binding.button.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View v) {        NavController controller = Navigation.findNavController(v);        controller.navigate(R.id.action_homeFragment_to_detailFragment);      }    });    return binding.getRoot();    //return inflater.inflate(R.layout.fragment_home, container, false);  }}

xml

<?xml version="1.0" encoding="utf-8"?><layout 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">  <data>    <variable      name="data"      type="com.example.naviation01.MyViewMode" />  </data>  <FrameLayout    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context=".HomeFragment">    <androidx.constraintlayout.widget.ConstraintLayout      android:layout_width="match_parent"      android:layout_height="match_parent">      <TextView        android:id="@+id/textView"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@{String.valueOf(data.number)}"        android:textSize="30sp"        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.255" />      <SeekBar        android:id="@+id/seekBar"        android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintHorizontal_bias="0.0"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent"        app:layout_constraintVertical_bias="0.456" />      <Button        android:id="@+id/button"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@string/function01"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintHorizontal_bias="0.498"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent"        app:layout_constraintVertical_bias="0.679" />    </androidx.constraintlayout.widget.ConstraintLayout>  </FrameLayout></layout>

3、Fragment 副頁

package com.example.naviation01;import android.os.Bundle;import androidx.databinding.DataBindingUtil;import androidx.fragment.app.Fragment;import androidx.lifecycle.ViewModelProviders;import androidx.navigation.NavController;import androidx.navigation.Navigation;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import com.example.naviation01.databinding.FragmentDetailBinding;/** * A simple {@link Fragment} subclass. */public class DetailFragment extends Fragment {  public DetailFragment() {    // Required empty public constructor  }  @Override  public View onCreateView(LayoutInflater inflater, ViewGroup container,               Bundle savedInstanceState) {    // Inflate the layout for this fragment    MyViewMode myViewMode;    myViewMode = ViewModelProviders.of(getActivity()).get(MyViewMode.class);    FragmentDetailBinding binding;    binding = DataBindingUtil.inflate(inflater,R.layout.fragment_detail,container,false);    binding.setDate(myViewMode);    binding.setLifecycleOwner(getActivity());    binding.button4.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View v) {        NavController controller = Navigation.findNavController(v);        controller.navigate(R.id.action_detailFragment_to_homeFragment);      }    });    return binding.getRoot();    //return inflater.inflate(R.layout.fragment_detail, container, false);  }}

xml

<?xml version="1.0" encoding="utf-8"?><layout 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">  <data>    <variable      name="date"      type="com.example.naviation01.MyViewMode" />  </data>  <FrameLayout    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context=".DetailFragment">    <androidx.constraintlayout.widget.ConstraintLayout      android:layout_width="match_parent"      android:layout_height="match_parent">      <TextView        android:id="@+id/textView3"        android:layout_width="131dp"        android:layout_height="55dp"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@{String.valueOf(date.number)}"        android:textSize="30sp"        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.23" />      <Button        android:id="@+id/button2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@string/function02"        android:onClick="@{()->date.add(1)}"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintHorizontal_bias="0.104"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent"        app:layout_constraintVertical_bias="0.499" />      <Button        android:id="@+id/button3"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@string/function03"        android:onClick="@{()->date.add(-1)}"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintHorizontal_bias="0.899"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent"        app:layout_constraintVertical_bias="0.499" />      <Button        android:id="@+id/button4"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginStart="8dp"        android:layout_marginTop="8dp"        android:layout_marginEnd="8dp"        android:layout_marginBottom="8dp"        android:text="@string/function04"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintHorizontal_bias="0.498"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent"        app:layout_constraintVertical_bias="0.664" />    </androidx.constraintlayout.widget.ConstraintLayout>  </FrameLayout></layout>

4、xml Main_Activity

<?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">  <fragment    android:id="@+id/fragment"    android:name="androidx.navigation.fragment.NavHostFragment"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_marginTop="8dp"    android:layout_marginEnd="8dp"    android:layout_marginBottom="8dp"    app:defaultNavHost="true"    app:layout_constraintBottom_toBottomOf="parent"    app:layout_constraintEnd_toEndOf="parent"    app:layout_constraintStart_toStartOf="parent"    app:layout_constraintTop_toTopOf="parent"    app:navGraph="@navigation/nav_graph" /></androidx.constraintlayout.widget.ConstraintLayout>

以上是“Android如何通過ViewModel保存數據實現多頁面的數據共享功能”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

湘阴县| 抚松县| 托克逊县| 开江县| 康保县| 满洲里市| 九江县| 闸北区| 延庆县| 松潘县| 义马市| 苏尼特左旗| 三都| 会同县| 抚松县| 公安县| 长海县| 宁陵县| 天等县| 同心县| 金乡县| 阿瓦提县| 卢湾区| 衡山县| 海南省| 盐池县| 策勒县| 静乐县| 喀喇沁旗| 东阳市| 闽清县| 佳木斯市| 泰州市| 长岭县| 固安县| 临漳县| 曲麻莱县| 彭阳县| 鄢陵县| 河东区| 潞西市|