Skip to content
This repository was archived by the owner on Oct 9, 2020. It is now read-only.

Commit fe21d59

Browse files
2 parents 9565fbb + 7a2cfca commit fe21d59

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before you begin, you should already have the Android Studio SDK downloaded and
2323
4. Once this process is complete and Android Studio opens, check the Console for any build errors.
2424

2525
- *Note:* If you recieve a Gradle sync error titled, "failed to find ...", you should click on the link below the error message (if avaliable) that says *Install missing platform(s) and sync project* and allow Android studio to fetch you what is missing.
26-
26+
- *Note:* If you are trying to build this project on a Windows Machine, you should **Comment** out line number 5 and **Uncomment** line number 6 inside build.gradle(Project: app).
2727
5. Once all build errors have been resolved, you should be all set to build the app and test it.
2828

2929
6. To Build the app, go to *Build>Make Project* (or alternatively press the Make Project icon in the toolbar).

app/src/main/res/layout/activity_locations.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
xmlns:app="http://schemas.android.com/apk/res-auto"
33
android:layout_width="match_parent"
44
android:layout_height="wrap_content"
5+
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
56
android:orientation="vertical">
67

78

app/src/main/res/layout/activity_speakers.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
xmlns:app="http://schemas.android.com/apk/res-auto"
44
android:layout_width="match_parent"
55
android:layout_height="wrap_content"
6+
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
67
android:orientation="vertical">
78

89
<android.support.v7.widget.Toolbar

app/src/main/res/values-v21/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<item name="windowActionBar">false</item>
88
<item name="windowNoTitle">true</item>
99
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
10-
<item name="android:statusBarColor">@android:color/transparent</item>
10+
<item name="android:statusBarColor">@color/color_primary_dark</item>
1111
</style>
1212
</resources>

0 commit comments

Comments
 (0)