|
@@ -1,13 +1,14 @@
|
|
|
package korobkinapp.example.sql
|
|
|
|
|
|
+import android.content.DialogInterface
|
|
|
+import android.database.sqlite.SQLiteDatabase
|
|
|
import android.os.Bundle
|
|
|
import android.view.View
|
|
|
import android.widget.EditText
|
|
|
import android.widget.Toast
|
|
|
-import kotlinx.android.synthetic.main.activity_main.*
|
|
|
-import android.content.DialogInterface
|
|
|
import androidx.appcompat.app.AlertDialog
|
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
+import kotlinx.android.synthetic.main.activity_main.*
|
|
|
|
|
|
|
|
|
class MainActivity : AppCompatActivity() {
|
|
@@ -21,17 +22,24 @@ class MainActivity : AppCompatActivity() {
|
|
|
val empArrayId = Array<String>(emp.size){"0"}
|
|
|
val empArrayName = Array<String>(emp.size){"null"}
|
|
|
val empArrayDescription = Array<String>(emp.size){"null"}
|
|
|
+ val empArrayPlane = Array<String>(emp.size){"null"}
|
|
|
+ val empArrayRun = Array<String>(emp.size){"null"}
|
|
|
+ val empArrayComplit = Array<String>(emp.size){"null"}
|
|
|
var index = 0
|
|
|
for(e in emp){
|
|
|
empArrayId[index] = e.userId.toString()
|
|
|
empArrayName[index] = e.userName
|
|
|
empArrayDescription[index] = e.userDescription
|
|
|
+ empArrayPlane[index] = e.userPlane
|
|
|
+ empArrayRun[index] = e.userRun
|
|
|
+ empArrayComplit[index] = e.userComplit
|
|
|
index++
|
|
|
}
|
|
|
//creating custom ArrayAdapter
|
|
|
- val myListAdapter = MyListAdapter(this,empArrayId,empArrayName,empArrayDescription)
|
|
|
+ val myListAdapter = MyListAdapter(this,empArrayId,empArrayName,empArrayDescription, empArrayPlane)
|
|
|
listView.adapter = myListAdapter
|
|
|
}
|
|
|
+
|
|
|
//method for saving records in database
|
|
|
fun saveRecord(view: View){
|
|
|
val id = u_id.text.toString()
|
|
@@ -70,8 +78,6 @@ class MainActivity : AppCompatActivity() {
|
|
|
}else{
|
|
|
Toast.makeText(applicationContext,"id or name or description cannot be blank",Toast.LENGTH_LONG).show()
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
//method for read records from database in ListView
|
|
|
fun viewRecord(view: View){
|