I was doing this program and tried to run an app as an output. However, when I turned the app in Landscape mode, my text output didn't work. I realized that I need to add onSaveInstanceState
in the Kotlin code, which I don't know how to do.
MainActivity.kt:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
var count = 10
val textCount = findViewById<View>(R.id.textView) as TextView
val buttonred = findViewById<View>(R.id.injury) as Button
val buttoning = findViewById<View>(R.id.vial) as Button
buttonred.setOnClickListener {
if (count >= 0) {
count--
textCount.text = count.toString()
}
}
buttoning.setOnClickListener {
if (count <= 10)
count += 3
textCount.text = count.toString()
}
}
}
XML Code
LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="60dp"
android:layout_height="78dp"
android:layout_marginStart="145dp"
android:layout_marginTop="68dp"
android:layout_marginEnd="145dp"
android:textSize="50dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/injury"
android:layout_width="106dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="150dp"
android:text="injury"
/>
<Button
android:id="@+id/vial"
android:layout_width="197dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="109dp"
android:text="vial" />
</LinearLayout>
I would like to know how to add the onSaveInstanceState
Here is the full code, You didn't add many details but this is how the sample project looks, it enables to save
count
and then set it toTextView
:MainActivity.kt
:activity_main.xml
:You edited the question and added more details, here is the full Kotlin code, I tested it and it seems to work.
ViewModel implementation:
To Your Gradle (module.app) file add:
MainActivityViewModel class:
MainActivity class: