Я добавил класс ViewModel из библиотеки архитектуры жизненный цикл . Но это не работает в моем коде. Что я сделал не так. Я новичок в ViewModel Arch Компонент Android.
Вот мой код:
Gradle:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
// ViewModel and LiveData
implementation "android.arch.lifecycle:extensions:1.1.1"
}
ViewModel:
import android.arch.lifecycle.MutableLiveData;
import android.arch.lifecycle.ViewModel;
public class NameViewModel extends ViewModel {
// Create a LiveData with a String
private MutableLiveData<String> mCurrentName;
public MutableLiveData<String> getmCurrentName() {
if (mCurrentName == null) {
mCurrentName = new MutableLiveData<>();
}
return mCurrentName;
}
}
MainActivity.java
import android.arch.lifecycle.Observer;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private NameViewModel nameViewModel;
private TextView lblText;
private EditText txtValue;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lblText = findViewById(R.id.textview);
txtValue = findViewById(R.id.editText);
final Observer<String> nameObserver = new Observer<String>() {
@Override
public void onChanged(@Nullable String data) {
lblText.setText(data);
}
};
nameViewModel.getmCurrentName().observe(this, nameObserver);
txtValue.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence value, int start, int before, int count) {
nameViewModel.getmCurrentName().setValue(value.toString());
}
@Override
public void afterTextChanged(Editable s) {
}
});
}
}
Я что-то упустил, что необходимо?
Любая помощь будет оценена. Большое вам спасибо.