Главная страница

Инструкция по разработке 2d игры в Android Studio. Шаг Придумываем идею игры


Скачать 0.5 Mb.
НазваниеШаг Придумываем идею игры
АнкорИнструкция по разработке 2d игры в Android Studio
Дата13.10.2019
Размер0.5 Mb.
Формат файлаdocx
Имя файлаShooter_Androidapp.docx
ТипДокументы
#89940
страница3 из 4
1   2   3   4

Шаг 4. Создаём layout

Находим activity_main.xml, открываем вкладку Text и вставляем туда это:


<LinearLayout 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="com.spaceavoider.spaceavoider.MainActivity">

<LinearLayout

android:id="@+id/gameLayout"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

android:layout_weight="100"/>

<LinearLayout

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

<Button

android:id="@+id/leftButton"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_weight="50"

android:text="Left" />

<Button

android:id="@+id/rightButton"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_weight="50"

android:text="Right" />

LinearLayout>

LinearLayout>


На вкладке Design видно как наш layout будет выглядеть



Сверху поле в котором будет сама игра, а снизу кнопки управления Left и Right. Про layout можно написать отдельную статью, и не одну. Я не буду на этом подробно останавливаться. Про это можно почитать тут.
1   2   3   4


написать администратору сайта