python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Jetpack Compose view doesn't observes state updates
I have a state class
object SomeState {
data class State(
val mainPhotos: List<S3Photo>? = emptyList(),
)
}
VM load data via init and updates state
class SomeViewModel() {
var viewStat...
dbuzin
Votes: 0
Answers: 1
Android ViewModel - "by activityViewModels" called before "by viewModels"
After some time away from android development I'm trying to start again with a simple project.
I've created a new project picking the "basic activity" option which resulted in a MainActivity...

Michael m
Votes: 0
Answers: 1
Viewmodel not cleared when using viewModelStore.clear()
I'm trying to clear out my view models after a flow through a couple of fragments has completed. When navigating from the last fragment in the flow to the start screen, I call viewModelStore.clear() ...
sjohansson
Votes: 0
Answers: 0
I have an Custom Edittext and im using viewmodel but text input doesnt get updated in viewmodel?
My normal edittext which works:
<EditText
android:id="@+id/emailEditText"
android:layout_width="match_parent"
android...
Sãúrâßh Jáðhàv
Votes: 0
Answers: 1