Skip to content

Commit dcab740

Browse files
committed
Added screenshots for section 2
1 parent 9265d59 commit dcab740

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

codelabs/chat/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ What you'll learn:
1010

1111
The steps:
1212

13-
1. [Register with Firebase](#register-with-firebase)
13+
1. [Register with Firebase](chat#register-with-firebase)
1414
2. [Create a project in Android Studio](#create-a-project-in-android-studio)
1515
3. [Connect the Android app to Firebase](#connect-the-android-app-to-firebase)
1616
4. [Send a message](#send-a-message)
@@ -49,32 +49,32 @@ In this step we'll create a project in Android Studio.
4949

5050
1. Start Android Studio and Start a new Android Studio project
5151

52-
[screenshot:Welcome to Android Studio]
52+
[!Welcome to Android Studio](images/2_1.png)
5353

5454
2. You can name the project anything you want. But in the code below, we've named it Nanochat
5555

56-
[screenshot:Configure your new project]
56+
[!Configure your new project](images/2_2.png)
5757

5858
3. Set the minimum SDK to 10 or higher.
5959

60-
[screenhot:minimum Android API level]
60+
[!Minimum Android API level](images/2_3.png)
6161

62-
We've left it on 10 here, since that is the lowest API level Firebase supports.
62+
We've left it on 10 (Gingerbread) here, since that is the lowest API level Firebase supports.
6363
4. Start with a Blank Activity
6464

65-
[screenshot:Add an activity]
65+
[!Add an activity](images/2_4.png)
6666

6767
5. We'll leave all the defaults for this activity
6868

69-
[screenshot:Customize the Activity]
69+
[!Customize the Activity](images/2_5.png)
7070

7171
6. If the project outline is not visible on the left, click the 1:Project label
7272

73-
[screenshot:Click 1:Project]
73+
[!Click 1:Project](images/2_6.png)
7474

75-
7. Open up the main activity, which can be found in `app/res/layout/activity_main.xml`. In this file the root element will be a `RelativeLayout` and in there will be a `TextView`. We won't be using the `TextView`, so delete it (or leave it and put a welcome message in it).
75+
7. Open up the main activity, which can be found in `app/res/layout/activity_main.xml` and switch from its Design to its Text tab if needed. In this file the root element will be a `RelativeLayout` and in there will be a `TextView`. We won't be using the `TextView`, so delete it (or leave it and put a welcome message in it).
7676

77-
[screenshot:emptied up layout_main.xml]
77+
[!emptied up layout_main.xml](2_7.png)
7878

7979
We now have a blank project in Android Studio. Let's wire our app up to Firebase!
8080

codelabs/chat/images/2_1.png

108 KB
Loading

codelabs/chat/images/2_2.png

78.5 KB
Loading

codelabs/chat/images/2_3.png

110 KB
Loading

codelabs/chat/images/2_4.png

117 KB
Loading

codelabs/chat/images/2_5.png

80.7 KB
Loading

codelabs/chat/images/2_6.png

132 KB
Loading

codelabs/chat/images/2_7.png

175 KB
Loading

0 commit comments

Comments
 (0)