WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Commit 20f297d

Browse files
committed
changed splashscreen and fixed variables on shop screen
1 parent 398080e commit 20f297d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

app/src/main/java/org/hackillinois/android/view/shop/ShopFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ class ShopFragment : Fragment(), ShopAdapter.OnBuyItemListener {
285285

286286
private fun updateCoinTotalUI(newProfile: Profile?) {
287287
if (newProfile != null) {
288-
coin_total_textview.text = String.format("%,d", newProfile.pointsAccumulated)
288+
number_of_coins_textview.text = String.format("%,d", newProfile.pointsAccumulated)
289289
}
290290
}
291291

177 KB
Loading

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
<ImageView
1010
android:layout_width="0dp"
1111
android:layout_height="0dp"
12-
android:alpha="0.3"
1312
android:scaleType="fitXY"
14-
android:src="@drawable/scanner_background_svg"
13+
android:src="@drawable/olympus_splashscreen"
1514
app:layout_constraintBottom_toBottomOf="parent"
1615
app:layout_constraintLeft_toLeftOf="parent"
1716
app:layout_constraintRight_toRightOf="parent"

0 commit comments

Comments
 (0)