2
0

Merge with old project

This commit is contained in:
tarquinn18 2024-05-24 14:29:48 +03:00
parent 3e6fe310e0
commit 48bb79b327
6 changed files with 62 additions and 1 deletions

20
app/README.md Normal file
View File

@ -0,0 +1,20 @@
# Практическая работа. Подарочек
В данном практическом задании предлагается дописать существующий проект Android приложения, а именно дополнить разметку.
1. В разметке приложения в любой ориентации должны присутствовать элементы, указанные в табл. 1. У кнопки должен быть установлен строковый ресурс из табл. 2
2. В портретной ориентации: в *ImageView* должен быть установлен ресурс `@drawable/orange`, кнопка должна находиться строго под картинкой.
3. В ландшафтной ориентации: вместо оранжевой коробочки в *ImageView* должна отображаться коробочка синего цвета `@drawable/blue`, картинка должна быть расположена слева от кнопки.
| № | View type | id |
| :-: | ------- | -- |
| 0 | *Button* | `test_button` |
| 1 | *ImageView* | `box_image` |
*Таблица 1. Элементы пользовательского интерфейса*
| № | Ресурс | Допустимое значение |
| :-: | ------- | -- |
| 0 | `@string/main_text_button` | Test Button |
*Таблица 2. strings.xml*

View File

@ -11,6 +11,16 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Default"
tools:targetApi="31" />
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>

View File

@ -0,0 +1,21 @@
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());
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
</androidx.constraintlayout.widget.ConstraintLayout>