-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathP10.kt
53 lines (45 loc) · 1.56 KB
/
P10.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.example.myapplication
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.Button
import android.widget.CheckBox
import android.widget.Toast
class CheckBoxEx : AppCompatActivity() {
lateinit var btn: Button
lateinit var pizza: CheckBox
lateinit var chocolate: CheckBox
lateinit var coffee: CheckBox
lateinit var drink: CheckBox
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_check_box)
pizza = findViewById(R.id.pizza)
chocolate = findViewById(R.id.Chocolate)
coffee = findViewById(R.id.Coffee)
drink = findViewById(R.id.Drink)
btn = findViewById(R.id.btn)
btn.setOnClickListener() {
var amount: Int = 0
var result = StringBuilder()
result.append("Selected Items")
if (pizza.isChecked) {
result.append("\nPizza : ₹150")
amount += 150
}
if (chocolate.isChecked) {
result.append("\nChocolate : ₹250")
amount += 250
}
if (coffee.isChecked) {
result.append("\nCoffee : ₹50")
amount += 50
}
if (drink.isChecked) {
result.append("\nDrink : ₹150")
amount += 150
}
result.append("\nTotal : ₹${amount}")
Toast.makeText(this, result.toString(), Toast.LENGTH_LONG).show()
}
}
}