Migration from the old project
This commit is contained in:
		
							
								
								
									
										36
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | |||||||
|  | # Практическая работа. Ежедневник | ||||||
|  |  | ||||||
|  | В данном практическом задании предлагается дописать существующий проект-заготовку Android приложения, имитирующего ведение ежедневника. | ||||||
|  |  | ||||||
|  | Измените код существующих классов и интерфейсов, дополните разметку, ресурсы и манифест, чтобы приложение отвечало следущим требованиям: | ||||||
|  |  | ||||||
|  | 1. Интерфейс приложения должен содержать элементы, перечисленные в табл. 1. | ||||||
|  | 2. При запуске приложения все текстовые поля для ввода данных должны быть пустыми, в них должна отображаться подсказка. | ||||||
|  | 3. По нажатии на кнопку «`Сохранить`» в случае отсутствия информации о названии события появляется *Snackbar* c текстом «`Введите название события!`» (без кавычек). | ||||||
|  | 4. По нажатии на кнопку «`Сохранить`» в случае указания названия события появляется диалоговое окно с кнопкой «`OK`» и текстом, как представлено ниже. | ||||||
|  | ``` | ||||||
|  | Записано! | ||||||
|  | Событие: title | ||||||
|  | Дата: date | ||||||
|  | Время: time | ||||||
|  | Заметки: notes | ||||||
|  | ``` | ||||||
|  | 5. Дата выводится в формате: `дд.мм.гггг`. | ||||||
|  | 6. После нажатия на кнопку «`Сохранить`» все текстовые поля очищаются. | ||||||
|  |  | ||||||
|  | | № | View type | id | hint | text | | ||||||
|  | | :-: | ------- | -- | ---- | ----- | | ||||||
|  | | 0   | *EditText* | `event_title_user_input` | Название события | | | ||||||
|  | | 1   | *EditText* | `event_time_user_input`  | Время события | | | ||||||
|  | | 2   | *EditText* | `event_notes_user_input` | Заметки к событию | | | ||||||
|  | | 3   | *CalendarView* | произвольно | – | | | ||||||
|  | | 4   | *Button*       | произвольно | – | Сохранить | | ||||||
|  |  | ||||||
|  | *Таблица 1. Элементы пользовательского интерфейса* | ||||||
|  |  | ||||||
|  | | № | Тест | Балл | Проверка | | ||||||
|  | | :-: | -- | -- | --- | | ||||||
|  | | 1 | mainTest | 1 | Показ AlertDialog | | ||||||
|  | | 2 | emptyTest | 1 | Очищение полей ввода | | ||||||
|  |  | ||||||
|  | *Таблица 2. Критерии оценивания и тесты* | ||||||
| @@ -1,16 +1,22 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|     xmlns:tools="http://schemas.android.com/tools"> |     package="ru.myitschool.work"> | ||||||
|  |  | ||||||
|     <application |     <application | ||||||
|         android:allowBackup="true" |         android:allowBackup="true" | ||||||
|         android:dataExtractionRules="@xml/data_extraction_rules" |  | ||||||
|         android:fullBackupContent="@xml/backup_rules" |  | ||||||
|         android:icon="@mipmap/ic_launcher" |         android:icon="@mipmap/ic_launcher" | ||||||
|         android:label="@string/app_name" |         android:label="@string/app_name" | ||||||
|         android:roundIcon="@mipmap/ic_launcher_round" |         android:roundIcon="@mipmap/ic_launcher_round" | ||||||
|         android:supportsRtl="true" |         android:supportsRtl="true" | ||||||
|         android:theme="@style/Theme.Default" |         android:theme="@style/Theme.Work"> | ||||||
|         tools:targetApi="31" /> |         <activity | ||||||
|  |             android:name=".MainActivity" | ||||||
|  |             android:exported="true"> | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN" /> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER" /> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity> | ||||||
|  |     </application> | ||||||
|  |  | ||||||
| </manifest> | </manifest> | ||||||
							
								
								
									
										35
									
								
								app/src/main/java/ru/myitschool/work/MainActivity.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								app/src/main/java/ru/myitschool/work/MainActivity.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,35 @@ | |||||||
|  | package ru.myitschool.work; | ||||||
|  |  | ||||||
|  | import android.os.Bundle; | ||||||
|  |  | ||||||
|  | import androidx.annotation.Nullable; | ||||||
|  | import androidx.appcompat.app.AppCompatActivity; | ||||||
|  |  | ||||||
|  | import ru.myitschool.work.databinding.ActivityMainBinding; | ||||||
|  |  | ||||||
|  | public class MainActivity extends AppCompatActivity { | ||||||
|  |  | ||||||
|  |     private ActivityMainBinding binding; | ||||||
|  |  | ||||||
|  |     @Override | ||||||
|  |     protected void onCreate(@Nullable Bundle savedInstanceState) { | ||||||
|  |         super.onCreate(savedInstanceState); | ||||||
|  |         binding = ActivityMainBinding.inflate(getLayoutInflater()); | ||||||
|  |         setContentView(binding.getRoot()); | ||||||
|  |  | ||||||
|  |  | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  | class MainActivity : AppCompatActivity() { | ||||||
|  |  | ||||||
|  |     private lateinit var binding: ActivityMainBinding | ||||||
|  |  | ||||||
|  |     override fun onCreate(savedInstanceState: Bundle?) { | ||||||
|  |         super.onCreate(savedInstanceState) | ||||||
|  |         binding = ActivityMainBinding.inflate(layoutInflater) | ||||||
|  |         setContentView(binding.root) | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | */ | ||||||
							
								
								
									
										30
									
								
								app/src/main/res/drawable-v24/ic_launcher_foreground.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								app/src/main/res/drawable-v24/ic_launcher_foreground.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     xmlns:aapt="http://schemas.android.com/aapt" | ||||||
|  |     android:width="108dp" | ||||||
|  |     android:height="108dp" | ||||||
|  |     android:viewportWidth="108" | ||||||
|  |     android:viewportHeight="108"> | ||||||
|  |     <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> | ||||||
|  |         <aapt:attr name="android:fillColor"> | ||||||
|  |             <gradient | ||||||
|  |                 android:endX="85.84757" | ||||||
|  |                 android:endY="92.4963" | ||||||
|  |                 android:startX="42.9492" | ||||||
|  |                 android:startY="49.59793" | ||||||
|  |                 android:type="linear"> | ||||||
|  |                 <item | ||||||
|  |                     android:color="#44000000" | ||||||
|  |                     android:offset="0.0" /> | ||||||
|  |                 <item | ||||||
|  |                     android:color="#00000000" | ||||||
|  |                     android:offset="1.0" /> | ||||||
|  |             </gradient> | ||||||
|  |         </aapt:attr> | ||||||
|  |     </path> | ||||||
|  |     <path | ||||||
|  |         android:fillColor="#FFFFFF" | ||||||
|  |         android:fillType="nonZero" | ||||||
|  |         android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" | ||||||
|  |         android:strokeWidth="1" | ||||||
|  |         android:strokeColor="#00000000" /> | ||||||
|  | </vector> | ||||||
							
								
								
									
										14
									
								
								app/src/main/res/layout/activity_main.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								app/src/main/res/layout/activity_main.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     xmlns:tools="http://schemas.android.com/tools" | ||||||
|  |     android:layout_width="match_parent" | ||||||
|  |     android:layout_height="match_parent" | ||||||
|  |     android:orientation="vertical" | ||||||
|  |     tools:context=".MainActivity"> | ||||||
|  |  | ||||||
|  |     <include | ||||||
|  |         android:id="@+id/content" | ||||||
|  |         layout="@layout/content_main" /> | ||||||
|  |  | ||||||
|  |  | ||||||
|  | </androidx.constraintlayout.widget.ConstraintLayout> | ||||||
							
								
								
									
										21
									
								
								app/src/main/res/layout/content_main.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								app/src/main/res/layout/content_main.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | |||||||
|  | <androidx.constraintlayout.widget.ConstraintLayout 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" | ||||||
|  |     tools:context=".MainActivity"> | ||||||
|  |  | ||||||
|  |  | ||||||
|  |     <Button | ||||||
|  |         android:id="@+id/save" | ||||||
|  |         android:layout_width="wrap_content" | ||||||
|  |         android:layout_height="wrap_content" | ||||||
|  |         android:text="@android:string/ok" | ||||||
|  |         android:textSize="16sp" | ||||||
|  |         app:layout_constraintBottom_toBottomOf="parent" | ||||||
|  |         app:layout_constraintEnd_toEndOf="parent" | ||||||
|  |         app:layout_constraintStart_toStartOf="parent" | ||||||
|  |         app:layout_constraintTop_toTopOf="parent" /> | ||||||
|  |  | ||||||
|  |  | ||||||
|  | </androidx.constraintlayout.widget.ConstraintLayout> | ||||||
| @@ -2,5 +2,4 @@ | |||||||
| <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|     <background android:drawable="@drawable/ic_launcher_background" /> |     <background android:drawable="@drawable/ic_launcher_background" /> | ||||||
|     <foreground android:drawable="@drawable/ic_launcher_foreground" /> |     <foreground android:drawable="@drawable/ic_launcher_foreground" /> | ||||||
|     <monochrome android:drawable="@drawable/ic_launcher_foreground" /> |  | ||||||
| </adaptive-icon> | </adaptive-icon> | ||||||
| @@ -2,5 +2,4 @@ | |||||||
| <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|     <background android:drawable="@drawable/ic_launcher_background" /> |     <background android:drawable="@drawable/ic_launcher_background" /> | ||||||
|     <foreground android:drawable="@drawable/ic_launcher_foreground" /> |     <foreground android:drawable="@drawable/ic_launcher_foreground" /> | ||||||
|     <monochrome android:drawable="@drawable/ic_launcher_foreground" /> |  | ||||||
| </adaptive-icon> | </adaptive-icon> | ||||||
| @@ -1,10 +1,11 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|     <color name="purple_200">#FFBB86FC</color> |     <color name="blue_200">#3E91FF</color> | ||||||
|     <color name="purple_500">#FF6200EE</color> |     <color name="blue_500">#0381FE</color> | ||||||
|     <color name="purple_700">#FF3700B3</color> |     <color name="blue_700">#0072DE</color> | ||||||
|     <color name="teal_200">#FF03DAC5</color> |     <color name="teal_200">#3E91FF</color> | ||||||
|     <color name="teal_700">#FF018786</color> |     <color name="teal_700">#3E91FF</color> | ||||||
|     <color name="black">#FF000000</color> |     <color name="black">#FF000000</color> | ||||||
|     <color name="white">#FFFFFFFF</color> |     <color name="white">#FFFFFFFF</color> | ||||||
|  |     <color name="red">#FF0000</color> | ||||||
| </resources> | </resources> | ||||||
							
								
								
									
										3
									
								
								app/src/main/res/values/dimens.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								app/src/main/res/values/dimens.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | |||||||
|  | <resources> | ||||||
|  |     <dimen name="main_padding">16dp</dimen> | ||||||
|  | </resources> | ||||||
| @@ -1,3 +1,3 @@ | |||||||
| <resources> | <resources> | ||||||
|     <string name="app_name">Work</string> |     <string name="app_name">Ежедневник</string> | ||||||
| </resources> | </resources> | ||||||
| @@ -1,16 +1,24 @@ | |||||||
| <resources xmlns:tools="http://schemas.android.com/tools"> | <resources> | ||||||
|     <!-- Base application theme. --> |     <!-- Base application theme. --> | ||||||
|     <style name="Theme.Default" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> |     <style name="Theme.Work" parent="Theme.Material3.DayNight"> | ||||||
|         <!-- Primary brand color. --> |         <!-- Primary color --> | ||||||
|         <item name="colorPrimary">@color/purple_500</item> |         <item name="colorPrimary">@color/blue_500</item> | ||||||
|         <item name="colorPrimaryVariant">@color/purple_700</item> |         <item name="colorPrimaryVariant">@color/blue_700</item> | ||||||
|         <item name="colorOnPrimary">@color/white</item> |         <item name="colorOnPrimary">@color/white</item> | ||||||
|         <!-- Secondary brand color. --> |         <!-- Secondary color --> | ||||||
|         <item name="colorSecondary">@color/teal_200</item> |         <item name="colorSecondary">@color/teal_200</item> | ||||||
|         <item name="colorSecondaryVariant">@color/teal_700</item> |         <item name="colorSecondaryVariant">@color/teal_700</item> | ||||||
|         <item name="colorOnSecondary">@color/black</item> |         <item name="colorOnSecondary">@color/black</item> | ||||||
|         <!-- Status bar color. --> |         <!-- Status bar color --> | ||||||
|         <item name="android:statusBarColor">?attr/colorPrimaryVariant</item> |         <!--<item name="android:statusBarColor" >?attr/colorPrimaryVariant</item>--> | ||||||
|         <!-- Customize your theme here. --> |         <!-- Floating Action Button Container --> | ||||||
|  |         <item name="colorPrimaryContainer">@color/blue_500</item> | ||||||
|  |         <!--ActionBar --> | ||||||
|  |         <item name="colorSurface">@color/blue_700</item> | ||||||
|  |         <item name="colorOnSurface">@color/white</item> | ||||||
|  |  | ||||||
|  |         <item name="android:navigationBarColor">@color/blue_200</item> | ||||||
|  |         <item name="android:windowLightNavigationBar">true</item> | ||||||
|     </style> |     </style> | ||||||
|  |  | ||||||
| </resources> | </resources> | ||||||
							
								
								
									
										4
									
								
								app/src/main/res/values/values.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								app/src/main/res/values/values.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <resources xmlns:tools="http://schemas.android.com/tools"> | ||||||
|  |     <integer name="design_snackbar_text_max_lines" tools:override="true">10</integer> | ||||||
|  | </resources> | ||||||
		Reference in New Issue
	
	Block a user