Задание
Разработать мобильное приложение для просмотра погоды в любом городе мира на Java в Android studio
Содержание отчета к программе
В отчете 30 страниц
ВВЕДЕНИЕ
1. Анализ предметной области
1.1 Особенности функционирования мобильных приложений в различных операционных системах
1.2 Инструментальные средства разработки мобилтных приложений
1.3. Цели и задачи курсового проекта
2. Проектирование мобильного приложения
2.1. Обоснование выбора средства разработки
2.2. Проектирование приложения
3. Разработка мобильного приложения
3.1. Структура мобильного приложения
3.2. Описание диалога с пользователем
ПРИЛОЖЕНИЕ А
Фрагмент программного кода
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" android:background="@color/Primary_color" tools:context=".MainActivity"> <TextView android:id="@+id/logo" android:layout_width="match_parent" android:layout_height="wrap_content" android:fontFamily="@font/montserrat_alternates_semibold_italic" android:text="@string/logo" android:textAlignment="center" android:layout_marginTop="50sp" android:textColor="@color/text_color" android:textSize="30sp" /> <EditText android:id="@+id/user_field" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:layout_below="@id/logo" android:backgroundTint="#fff" android:layout_marginTop="100sp" android:layout_marginHorizontal="40sp" android:inputType="text" android:textColor="@color/text_color" android:textColorHint="@color/text_color_hint" android:hint="@string/hint_user_field" /> <Button android:id="@+id/main_btn" android:fontFamily="@font/montserrat_alternates_semibold_italic" android:layout_below="@+id/user_field" android:layout_marginTop="20sp" android:layout_marginHorizontal="100sp" android:backgroundTint="@color/btn_color" android:text="@string/main_btn_text" android:layout_width="match_parent" android:layout_height="wrap_content" />//картинку можно либо удалить, либо скачать другую, поместив в папку drawble
Скриншот архива с проектом
Пояснения по запуску программы
Наличие Android studio
AlexKl