Skip to content

Commit 02e7a0f

Browse files
committedJan 8, 2022
final UI changes before submission
1 parent 7b13a93 commit 02e7a0f

File tree

9 files changed

+21
-25
lines changed

9 files changed

+21
-25
lines changed
 

‎app/src/main/java/com/example/contestssubscription/About.kt

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.example.contestssubscription
22

33
import android.os.Bundle
4-
import android.text.Html
4+
import android.text.method.LinkMovementMethod
55
import android.view.LayoutInflater
66
import android.view.View
77
import android.view.ViewGroup
@@ -15,11 +15,9 @@ class About : Fragment() {
1515
inflater: LayoutInflater, container: ViewGroup?,
1616
savedInstanceState: Bundle?
1717
): View {
18-
// Inflate the layout for this fragment
1918
val view = inflater.inflate(R.layout.fragment_about, container, false)
2019
val link: TextView = view.findViewById(R.id.link)
21-
val text = "GitHub Repo: <a href=\"https://github.com/masterchief164/Contests_Subscription\">Contest Subscription</a>"
22-
link.text= Html.fromHtml(text)
20+
link.movementMethod = LinkMovementMethod.getInstance()
2321
return view
2422
}
2523
}

‎app/src/main/java/com/example/contestssubscription/adapters/ContestAdapter.kt

-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ class ContestAdapter(private val contests: ArrayList<Contest>) :
2020
fun updateData(data:ArrayList<Contest>){
2121
contests.clear()
2222
contests.addAll(data)
23-
notifyDataSetChanged()
2423
}
2524

2625
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ContestViewHolder {
@@ -43,9 +42,6 @@ class ContestAdapter(private val contests: ArrayList<Contest>) :
4342
item.url.contains("codechef",true) -> holder.imageView.setImageResource(R.mipmap.cc_icon_foreground)
4443
item.url.contains("atcoder",true) -> holder.imageView.setImageResource(R.mipmap.at_icon_foreground)
4544
}
46-
47-
// holder.imageView.setImageResource(R.drawable.ic_launcher_background)
48-
4945
}
5046

5147
override fun getItemCount() = contests.size
-4.06 MB
Binary file not shown.

‎app/src/main/res/drawable/bg1.webp

152 KB
Binary file not shown.

‎app/src/main/res/drawable/my_bg.xml

-4
This file was deleted.

‎app/src/main/res/layout/activity_main.xml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
77
android:id="@+id/drawerLayout"
8+
android:background="@drawable/bg1"
89
tools:context=".MainActivity">
910

1011
<fragment

‎app/src/main/res/layout/fragment_about.xml

+14-12
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7+
android:background="@color/white"
8+
android:padding="8sp"
79
tools:context=".About">
810

911

1012
<TextView
1113
android:layout_width="wrap_content"
1214
android:layout_height="wrap_content"
13-
android:text="Contests Subscription \n App"
15+
android:text="@string/contests_subscription_n_app"
1416
android:textAlignment="center"
1517
android:textSize="30sp"
1618
app:layout_constraintBottom_toBottomOf="parent"
@@ -24,7 +26,7 @@
2426
android:id="@+id/textView6"
2527
android:layout_width="wrap_content"
2628
android:layout_height="wrap_content"
27-
android:text="Author: Shaswat Gupta"
29+
android:text="@string/developer_shaswat_gupta"
2830
android:textSize="20sp"
2931
app:layout_constraintBottom_toBottomOf="parent"
3032
app:layout_constraintEnd_toEndOf="parent"
@@ -37,32 +39,32 @@
3739
android:layout_width="wrap_content"
3840
android:layout_height="wrap_content"
3941
android:layout_margin="10sp"
40-
android:layout_marginStart="25sp"
4142
android:padding="10sp"
42-
android:text="Aim: Provide lists of up coming contests for major competitive coding platforms"
43+
android:text="@string/aim_provide_lists_of_up_coming_contests_for_major_competitive_coding_platforms"
4344
android:textAlignment="viewStart"
4445
android:textSize="20sp"
4546
app:layout_constraintBottom_toBottomOf="parent"
4647
app:layout_constraintEnd_toEndOf="parent"
47-
app:layout_constraintHorizontal_bias="0.36"
4848
app:layout_constraintStart_toStartOf="parent"
4949
app:layout_constraintTop_toTopOf="parent"
50-
app:layout_constraintVertical_bias="0.63" />
50+
app:layout_constraintVertical_bias="0.526" />
5151

5252
<TextView
5353
android:id="@+id/link"
5454
android:layout_width="wrap_content"
5555
android:layout_height="wrap_content"
56-
android:text="GitHub Link: Contests Subscription"
57-
android:textSize="20sp"
5856
android:clickable="true"
59-
android:autoLink="web"
57+
android:focusable="true"
58+
android:minHeight="48dp"
59+
android:text="@string/link"
60+
android:textColor="#009688"
61+
android:textSize="20sp"
6062
app:layout_constraintBottom_toBottomOf="parent"
6163
app:layout_constraintEnd_toEndOf="parent"
62-
app:layout_constraintHorizontal_bias="0.396"
64+
app:layout_constraintHorizontal_bias="0.367"
6365
app:layout_constraintStart_toStartOf="parent"
6466
app:layout_constraintTop_toTopOf="parent"
65-
app:layout_constraintVertical_bias="0.377"
66-
android:focusable="true" />
67+
app:layout_constraintVertical_bias="0.378"
68+
tools:ignore="TextContrastCheck" />
6769

6870
</androidx.constraintlayout.widget.ConstraintLayout>

‎app/src/main/res/layout/fragment_upcoming_contests.xml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
xmlns:app="http://schemas.android.com/apk/res-auto"
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
6-
android:background="@drawable/my_bg"
76
android:layout_height="match_parent"
87
tools:context=".UpcomingContests">
98

‎app/src/main/res/values/strings.xml

+4
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,8 @@
2828
<string name="atcoder">AtCoder</string>
2929
<string name="register">Register</string>
3030
<string name="name">Name</string>
31+
<string name="link">Github Repo: <a href="https://github.com/masterchief164/Contests_Subscription">Contest Subscription</a></string>
32+
<string name="aim_provide_lists_of_up_coming_contests_for_major_competitive_coding_platforms">Aim: Provide lists of up coming contests for major competitive coding platforms</string>
33+
<string name="developer_shaswat_gupta">Developer: Shaswat Gupta</string>
34+
<string name="contests_subscription_n_app">Contests Subscription \n App</string>
3135
</resources>

0 commit comments

Comments
 (0)