Migration from the old project
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Merge core/template-android-project to this repo / merge-if-needed (push) Successful in 11s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Merge core/template-android-project to this repo / merge-if-needed (push) Successful in 11s
				
			This commit is contained in:
		
							
								
								
									
										32
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | |||||||
|  | # Практическая работа. UI Checker | ||||||
|  |  | ||||||
|  | В данной практической работе требуется дописать код проекта Android приложения. | ||||||
|  |  | ||||||
|  | Во время тестирования приложение будет запущено со случайно сгенерированной разметкой, в которую могут быть включены следующие элементы (строго в таком порядке): *Chip*, *CheckBox*, *Switch*, *ToggleButton*. | ||||||
|  |  | ||||||
|  | Дополните исходный проект так, чтобы при нажатии на кнопку с `@id/show_action` в текстовое поле с `@id/summary_text` устанавливались строки формата: | ||||||
|  |  | ||||||
|  | ``` | ||||||
|  | canonicalname1:true | ||||||
|  | canonicalname2:false | ||||||
|  | canonicalname3:true | ||||||
|  | canonicalname4:false | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | Здесь `canonicalname` берётся из табл. 1, а значение `true`/`false` обозначает состояние `isChecked` у данного элемента. Если элемент отсутствует, то соответствующая ему строка пропускается. Интерфейс приложения может содержать элементы, перечисленные в табл. 1 и табл. 2. | ||||||
|  |  | ||||||
|  | | canonical name | id | | ||||||
|  | | - | - | | ||||||
|  | | `com.google.android.material.chip.Chip` | `chip_material` | | ||||||
|  | | `com.google.android.material.checkbox.MaterialCheckBox` | `check_box_material` | | ||||||
|  | | `com.google.android.material.switchmaterial.SwitchMaterial` | `switch_material` | | ||||||
|  | | `androidx.appcompat.widget.AppCompatToggleButton` | `toggle_button` | | ||||||
|  |  | ||||||
|  | *Таблица 1. isChecked-элементы пользовательского интерфейса* | ||||||
|  |  | ||||||
|  | | canonical name | id | | ||||||
|  | | - | - | | ||||||
|  | | `com.google.android.material.button.MaterialButton` | `show_action` | | ||||||
|  | | `com.google.android.material.textview.MaterialTextView` | `summary_text` | | ||||||
|  |  | ||||||
|  | *Таблица 2. Прочие элементы пользовательского интерфейса* | ||||||
| @@ -1,16 +1,28 @@ | |||||||
| <?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"> | ||||||
|  |  | ||||||
|  |     <uses-permission android:name="android.permission.INTERNET" /> | ||||||
|  |  | ||||||
|  |  | ||||||
|     <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:requestLegacyExternalStorage="true" | ||||||
|         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="ru.myitschool.work.MainActivity" | ||||||
|  |             android:exported="true" | ||||||
|  |             android:theme="@style/Theme.Work.NoActionBar"> | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN" /> | ||||||
|  |  | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER" /> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity> | ||||||
|  |     </application> | ||||||
|  |  | ||||||
| </manifest> | </manifest> | ||||||
							
								
								
									
										15
									
								
								app/src/main/java/ru/myitschool/work/MainActivity.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								app/src/main/java/ru/myitschool/work/MainActivity.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | |||||||
|  | package ru.myitschool.work; | ||||||
|  |  | ||||||
|  | import android.os.Bundle; | ||||||
|  |  | ||||||
|  | import androidx.annotation.Nullable; | ||||||
|  | import androidx.appcompat.app.AppCompatActivity; | ||||||
|  |  | ||||||
|  | public class MainActivity extends AppCompatActivity { | ||||||
|  |  | ||||||
|  |     @Override | ||||||
|  |     protected void onCreate(@Nullable Bundle savedInstanceState) { | ||||||
|  |         super.onCreate(savedInstanceState); | ||||||
|  |         setContentView(R.layout.activity_main); | ||||||
|  |     } | ||||||
|  | } | ||||||
							
								
								
									
										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.coordinatorlayout.widget.CoordinatorLayout 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" | ||||||
|  |     tools:context=".MainActivity"> | ||||||
|  |  | ||||||
|  |     <include | ||||||
|  |         android:id="@+id/content" | ||||||
|  |         layout="@layout/content_main" | ||||||
|  |         android:layout_width="match_parent" | ||||||
|  |         android:layout_height="match_parent" /> | ||||||
|  |  | ||||||
|  | </androidx.coordinatorlayout.widget.CoordinatorLayout> | ||||||
							
								
								
									
										19
									
								
								app/src/main/res/layout/content_main.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								app/src/main/res/layout/content_main.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | <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"> | ||||||
|  |  | ||||||
|  |     <com.google.android.material.chip.Chip | ||||||
|  |         android:id="@+id/chip_material" | ||||||
|  |         android:layout_width="0dp" | ||||||
|  |         android:layout_height="wrap_content" | ||||||
|  |         android:checkable="true" | ||||||
|  |         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> | ||||||
							
								
								
									
										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,4 @@ | |||||||
| <resources> | <resources> | ||||||
|     <string name="app_name">Work</string> |     <string name="app_name">UI Checked</string> | ||||||
|  |     <string name="show">show</string> | ||||||
| </resources> | </resources> | ||||||
| @@ -1,6 +1,6 @@ | |||||||
| <resources xmlns:tools="http://schemas.android.com/tools"> | <resources xmlns:tools="http://schemas.android.com/tools"> | ||||||
|     <!-- 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 brand color. --> | ||||||
|         <item name="colorPrimary">@color/purple_500</item> |         <item name="colorPrimary">@color/purple_500</item> | ||||||
|         <item name="colorPrimaryVariant">@color/purple_700</item> |         <item name="colorPrimaryVariant">@color/purple_700</item> | ||||||
| @@ -10,7 +10,17 @@ | |||||||
|         <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" tools:targetApi="l">?attr/colorPrimaryVariant</item> | ||||||
|         <!-- Customize your theme here. --> |         <!-- Customize your theme here. --> | ||||||
|     </style> |     </style> | ||||||
|  |  | ||||||
|  |     <style name="Theme.Work.NoActionBar"> | ||||||
|  |         <item name="windowActionBar">false</item> | ||||||
|  |         <item name="windowNoTitle">true</item> | ||||||
|  |     </style> | ||||||
|  |  | ||||||
|  |     <style name="Theme.Work.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> | ||||||
|  |  | ||||||
|  |     <style name="Theme.Work.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> | ||||||
|  |  | ||||||
| </resources> | </resources> | ||||||
		Reference in New Issue
	
	Block a user