Advertisement
Guest User

JabaVedro11!1

a guest
Mar 31st, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.28 KB | None | 0 0
  1. package com.example.day2_sqlite;
  2.  
  3. import android.database.Cursor;
  4. import android.database.sqlite.SQLiteDatabase;
  5. import android.support.v7.app.AppCompatActivity;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.widget.EditText;
  9. import android.widget.ListView;
  10. import android.widget.SimpleCursorAdapter;
  11. import android.widget.TextView;
  12. import android.content.Context;
  13.  
  14. public class MainActivity extends AppCompatActivity {
  15. private EditText ETNazv;
  16. private EditText ETPrice;
  17. private EditText ETYr;
  18. private TextView tVHead;
  19. DataBaseHelper DBHelper;
  20. Cursor userCursor;
  21. ListView lVDB;
  22. SimpleCursorAdapter userAdapter;
  23. SQLiteDatabase dbCars;
  24.  
  25. @Override
  26. protected void onCreate(Bundle savedInstanceState) {
  27. super.onCreate(savedInstanceState);
  28. setContentView(R.layout.activity_main);
  29. ETNazv=(EditText)findViewById(R.id.EtName);
  30. ETPrice=(EditText)findViewById(R.id.EtPrice);
  31. ETYr=(EditText)findViewById(R.id.EtYear);
  32. tVHead=(TextView)findViewById(R.id.tVHead);
  33. lVDB = (ListView)findViewById(R.id.lVDB);
  34. DBHelper = new DataBaseHelper(getApplicationContext());
  35. }
  36. public void onResume() {
  37. super.onResume();
  38. // открываем подключение
  39. dbCars = DBHelper.getReadableDatabase();
  40. //получаем данные из бд в виде курсора
  41. userCursor = dbCars.rawQuery("select * from "+ DBHelper.TABLE, null);
  42. // определяем, какие столбцы из курсора будут выводиться в ListView
  43. String[] headers = new String[] {DBHelper.COLUMN_NAME,DBHelper.COLUMN_PRICE,
  44. DBHelper.COLUMN_YEAR};
  45. // создаем адаптер, передаем в него курсор
  46. userAdapter = new SimpleCursorAdapter(this,
  47. android.R.layout.two_line_list_item, userCursor, headers, new int[]{android.R.id.text1,
  48. android.R.id.text2}, 0);
  49. tVHead.setText("Найдено элементов: " + userCursor.getCount());
  50. lVDB.setAdapter(userAdapter);
  51. }
  52. public void onDestroy(){
  53. super.onDestroy();
  54. dbCars.close();
  55. userCursor.close();
  56. }
  57. public void OnClick_Open(View view) {
  58.  
  59. Cursor query = dbCars.rawQuery("SELECT * FROM cars;", null);
  60. while(query.moveToNext()){
  61. String car = query.getString(1);
  62. double prc = query.getDouble(2);
  63. String year= query.getString(3);
  64. tVHead.append("Авто: " + car + "\n");
  65. tVHead.append("Цена: " + prc + "\n");
  66. tVHead.append("Год выпуска "+year+"\n");
  67. }
  68. query.close();
  69. dbCars.close();
  70. }
  71.  
  72. }
  73.  
  74. package com.example.day2_sqlite;
  75.  
  76. import android.content.Context;
  77. import android.database.sqlite.SQLiteDatabase;
  78. import android.database.sqlite.SQLiteOpenHelper;
  79.  
  80. /**
  81. * Created by user220 on 30.03.2021.
  82. */
  83.  
  84. public class DataBaseHelper extends SQLiteOpenHelper{
  85. private static final String DATABASE_NAME = "app1.db"; //название бд
  86. private static final int SCHEMA = 1; // версия базы данных
  87. static final String TABLE = "cars"; // название таблицы в бд
  88. // названия столбцов
  89. public static final String COLUMN_ID = "id";
  90. public static final String COLUMN_NAME = "name";
  91. public static final String COLUMN_PRICE = "prc";
  92. public static final String COLUMN_YEAR = "yrvp";
  93. public DataBaseHelper(Context context) {
  94. super(context, DATABASE_NAME, null, SCHEMA);
  95. }
  96. public void onCreate(SQLiteDatabase db) {
  97. db.execSQL("CREATE TABLE "+TABLE+(COLUMN_ID + "INTEGER PRIMARY KEY AUTOINCREMENT," + COLUMN_NAME + " TEXT, " + COLUMN_PRICE + " REAL," + COLUMN_YEAR +"TEXT);"));
  98. db.execSQL("INSERT INTO "+ TABLE +" (" + COLUMN_NAME + ", " + COLUMN_PRICE + ","+ COLUMN_YEAR+ ") VALUES ('Nissan X-Trail',1800000, '2020' );");
  99. db.execSQL("INSERT INTO "+ TABLE +" (" + COLUMN_NAME + ", " + COLUMN_PRICE + ","+ COLUMN_YEAR+ ") VALUES ('Nissan Qashqai',1600000, '2020' );");
  100. db.execSQL("INSERT INTO "+ TABLE +" (" + COLUMN_NAME + ", " + COLUMN_PRICE + ","+ COLUMN_YEAR+ ") VALUES ('Nissan Juke',1400000, '2020' );");
  101. }
  102.  
  103. public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  104. db.execSQL("DROP TABLE IF EXISTS "+TABLE);
  105. onCreate(db);
  106. }
  107.  
  108.  
  109. }
  110.  
  111. <?xml version="1.0" encoding="utf-8"?>
  112. <android.support.constraint.ConstraintLayout
  113. xmlns:android="http://schemas.android.com/apk/res/android"
  114. xmlns:app="http://schemas.android.com/apk/res-auto"
  115. xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
  116. android:layout_height="match_parent" tools:context="com.example.day2_sqlite.MainActivity">
  117.  
  118. <EditText
  119. android:id="@+id/EtYear"
  120. android:layout_width="350dp"
  121. android:layout_height="47dp"
  122. android:layout_marginBottom="8dp"
  123. android:layout_marginLeft="8dp"
  124. android:layout_marginRight="8dp"
  125. android:layout_marginTop="8dp"
  126. android:ems="10"
  127. android:inputType="textPersonName"
  128. app:layout_constraintBottom_toBottomOf="parent"
  129. app:layout_constraintHorizontal_bias="0.333"
  130. app:layout_constraintLeft_toLeftOf="parent"
  131. app:layout_constraintRight_toRightOf="parent"
  132. app:layout_constraintTop_toTopOf="parent"
  133. app:layout_constraintVertical_bias="0.433"
  134. android:layout_marginStart="8dp"
  135. android:layout_marginEnd="8dp" />
  136.  
  137. <TextView
  138. android:layout_width="wrap_content"
  139. android:layout_height="wrap_content"
  140. android:text="Год выпуска"
  141. app:layout_constraintBottom_toBottomOf="parent"
  142. app:layout_constraintHorizontal_bias="0.053"
  143. app:layout_constraintLeft_toLeftOf="parent"
  144. app:layout_constraintRight_toRightOf="parent"
  145. app:layout_constraintTop_toTopOf="parent"
  146. app:layout_constraintVertical_bias="0.36" />
  147.  
  148. <TextView
  149. android:id="@+id/textView2"
  150. android:layout_width="wrap_content"
  151. android:layout_height="wrap_content"
  152. android:text="Цена"
  153. app:layout_constraintBottom_toBottomOf="parent"
  154. app:layout_constraintHorizontal_bias="0.045"
  155. app:layout_constraintLeft_toLeftOf="parent"
  156. app:layout_constraintRight_toRightOf="parent"
  157. app:layout_constraintTop_toTopOf="parent"
  158. app:layout_constraintVertical_bias="0.194" />
  159.  
  160. <TextView
  161. android:id="@+id/textView"
  162. android:layout_width="wrap_content"
  163. android:layout_height="wrap_content"
  164. android:text="Наименование"
  165. app:layout_constraintBottom_toBottomOf="parent"
  166. app:layout_constraintHorizontal_bias="0.055"
  167. app:layout_constraintLeft_toLeftOf="parent"
  168. app:layout_constraintRight_toRightOf="parent"
  169. app:layout_constraintTop_toTopOf="parent"
  170. app:layout_constraintVertical_bias="0.032" />
  171.  
  172. <EditText
  173. android:id="@+id/EtName"
  174. android:layout_width="350dp"
  175. android:layout_height="47dp"
  176. android:layout_marginBottom="8dp"
  177. android:layout_marginLeft="8dp"
  178. android:layout_marginRight="8dp"
  179. android:layout_marginTop="8dp"
  180. android:ems="10"
  181. android:inputType="textPersonName"
  182. app:layout_constraintBottom_toBottomOf="parent"
  183. app:layout_constraintLeft_toLeftOf="parent"
  184. app:layout_constraintRight_toRightOf="parent"
  185. app:layout_constraintTop_toTopOf="parent"
  186. app:layout_constraintVertical_bias="0.072"
  187. android:layout_marginStart="8dp"
  188. android:layout_marginEnd="8dp" />
  189.  
  190. <EditText
  191. android:id="@+id/EtPrice"
  192. android:layout_width="350dp"
  193. android:layout_height="47dp"
  194. android:layout_marginBottom="8dp"
  195. android:layout_marginLeft="8dp"
  196. android:layout_marginRight="8dp"
  197. android:layout_marginTop="8dp"
  198. android:ems="10"
  199. android:inputType="textPersonName"
  200. app:layout_constraintBottom_toBottomOf="parent"
  201. app:layout_constraintHorizontal_bias="0.333"
  202. app:layout_constraintLeft_toLeftOf="parent"
  203. app:layout_constraintRight_toRightOf="parent"
  204. app:layout_constraintTop_toTopOf="parent"
  205. app:layout_constraintVertical_bias="0.258"
  206. android:layout_marginStart="8dp"
  207. android:layout_marginEnd="8dp" />
  208.  
  209. <Button
  210. android:id="@+id/button"
  211. android:layout_width="wrap_content"
  212. android:layout_height="wrap_content"
  213. android:layout_marginBottom="8dp"
  214. android:layout_marginLeft="8dp"
  215. android:layout_marginRight="8dp"
  216. android:layout_marginTop="8dp"
  217. android:onClick="OnClick_Delete"
  218. android:text="Удалить"
  219. app:layout_constraintBottom_toBottomOf="parent"
  220. app:layout_constraintHorizontal_bias="0.971"
  221. app:layout_constraintLeft_toLeftOf="parent"
  222. app:layout_constraintRight_toRightOf="parent"
  223. app:layout_constraintTop_toTopOf="parent"
  224. app:layout_constraintVertical_bias="0.559"
  225. android:layout_marginStart="8dp"
  226. android:layout_marginEnd="8dp" />
  227.  
  228. <Button
  229. android:id="@+id/button3"
  230. android:layout_width="wrap_content"
  231. android:layout_height="wrap_content"
  232. android:layout_marginBottom="8dp"
  233. android:layout_marginLeft="8dp"
  234. android:layout_marginRight="8dp"
  235. android:layout_marginTop="8dp"
  236. android:onClick="OnClick_Add"
  237. android:text="Добавить"
  238. app:layout_constraintBottom_toBottomOf="parent"
  239. app:layout_constraintLeft_toLeftOf="parent"
  240. app:layout_constraintRight_toRightOf="parent"
  241. app:layout_constraintTop_toTopOf="parent"
  242. app:layout_constraintVertical_bias="0.559"
  243. android:layout_marginStart="8dp"
  244. android:layout_marginEnd="8dp" />
  245.  
  246. <Button
  247. android:id="@+id/button2"
  248. android:layout_width="wrap_content"
  249. android:layout_height="wrap_content"
  250. android:layout_marginBottom="8dp"
  251. android:layout_marginLeft="8dp"
  252. android:layout_marginRight="8dp"
  253. android:layout_marginTop="8dp"
  254. android:onClick="OnClick_Open"
  255. android:text="Открыть"
  256. app:layout_constraintBottom_toBottomOf="parent"
  257. app:layout_constraintHorizontal_bias="0.028"
  258. app:layout_constraintLeft_toLeftOf="parent"
  259. app:layout_constraintRight_toRightOf="parent"
  260. app:layout_constraintTop_toTopOf="parent"
  261. app:layout_constraintVertical_bias="0.559"
  262. android:layout_marginStart="8dp"
  263. android:layout_marginEnd="8dp" />
  264.  
  265. <TextView
  266. android:id="@+id/tVHead"
  267. android:layout_width="349dp"
  268. android:layout_height="56dp"
  269. android:layout_marginBottom="8dp"
  270. android:layout_marginLeft="8dp"
  271. android:layout_marginRight="15dp"
  272. android:layout_marginTop="8dp"
  273. app:layout_constraintBottom_toBottomOf="parent"
  274. app:layout_constraintHorizontal_bias="0.833"
  275. app:layout_constraintLeft_toLeftOf="parent"
  276. app:layout_constraintRight_toRightOf="parent"
  277. app:layout_constraintTop_toTopOf="parent"
  278. app:layout_constraintVertical_bias="0.701"
  279. android:layout_marginStart="8dp"
  280. android:layout_marginEnd="15dp" />
  281.  
  282. <ListView
  283. android:id="@+id/lVDB"
  284. android:layout_width="351dp"
  285. android:layout_height="114dp"
  286. android:layout_marginBottom="8dp"
  287. android:layout_marginLeft="8dp"
  288. android:layout_marginRight="8dp"
  289. android:layout_marginTop="249dp"
  290. app:layout_constraintBottom_toBottomOf="parent"
  291. app:layout_constraintHorizontal_bias="0.521"
  292. app:layout_constraintLeft_toLeftOf="parent"
  293. app:layout_constraintRight_toRightOf="parent"
  294. app:layout_constraintTop_toTopOf="parent"
  295. app:layout_constraintVertical_bias="0.934"
  296. tools:layout_editor_absoluteY="381dp" />
  297.  
  298. </android.support.constraint.ConstraintLayout>
  299.  
  300.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement