курсы 4 years ago
parent
commit
d5126547d0

+ 6 - 2
app/src/main/java/makarovapp/example/sql/DatabaseHandler.kt

@@ -24,8 +24,12 @@ class DatabaseHandler(context: Context): SQLiteOpenHelper(context,DATABASE_NAME,
         // TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
         //creating table with fields
         val CREATE_CONTACTS_TABLE = ("CREATE TABLE " + TABLE_CONTACTS + "("
-                + KEY_ID + " INTEGER PRIMARY KEY," + KEY_NAME + " TEXT,"
-                + KEY_DESCRIPTION + " TEXT," + KEY_PLANE + " BOOLEAN,"+ KEY_RUN + " BOOLEAN,"+ KEY_COMPLIT + " BOOLEAN"+")")
+                + KEY_ID + " INTEGER PRIMARY KEY AUTOINCREMENT,"
+                + KEY_NAME + " TEXT,"
+                + KEY_DESCRIPTION + " TEXT,"
+                + KEY_PLANE + " BOOLEAN,"
+                + KEY_RUN + " BOOLEAN,"
+                + KEY_COMPLIT + " BOOLEAN" + ")")
         db?.execSQL(CREATE_CONTACTS_TABLE)
     }
 

+ 11 - 5
app/src/main/java/makarovapp/example/sql/MainActivity.kt

@@ -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){

+ 1 - 0
app/src/main/res/layout/custom_list.xml

@@ -24,4 +24,5 @@
         android:layout_height="wrap_content"
         android:text="description"
         android:textAppearance="@style/Base.TextAppearance.AppCompat.Medium"/>
+
 </LinearLayout>

+ 2 - 2
local.properties

@@ -4,5 +4,5 @@
 # Location of the SDK. This is only used by Gradle.
 # For customization when using a Version Control System, please read the
 # header note.
-#Thu Mar 11 18:18:41 KRAT 2021
-sdk.dir=C\:\\Users\\lau\\AppData\\Local\\Android\\Sdk
+#Fri Mar 12 18:42:39 KRAT 2021
+sdk.dir=C\:\\Users\\user2\\AppData\\Local\\Android\\Sdk