Skip to content

Commit

Permalink
Merge pull request #623 from pennlabs/news-fix-insights-date-change
Browse files Browse the repository at this point in the history
Coded dining insight start date + Removed bottom bar for news fragment
  • Loading branch information
baronhsieh2005 authored Sep 1, 2024
2 parents 661a903 + 0d6b33a commit 93d53a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ class NewsFragment : ListFragment() {
@JvmStatic val CUSTOM_TAB_PACKAGE_NAME = "com.android.chrome"
}

private var mListView: ListView? = null
private var mCustomTabsClient: CustomTabsClient? = null
private var customTabsIntent: CustomTabsIntent? = null
private var share: Intent? = null
private var session: CustomTabsSession? = null
private var _binding: FragmentNewsBinding? = null
private var builder: CustomTabsIntent.Builder? = null
private var connection: NewsCustomTabsServiceConnection? = null
private var customTabsIntent: CustomTabsIntent? = null
private var isCustomTabsSupported: Boolean = false
private var mCustomTabsClient: CustomTabsClient? = null
private var mListView: ListView? = null
private var session: CustomTabsSession? = null
private var share: Intent? = null
private lateinit var mActivity: MainActivity
private lateinit var sharedPreferences: SharedPreferences

private var connection: NewsCustomTabsServiceConnection? = null

private var _binding: FragmentNewsBinding? = null
val binding get() = _binding!!

internal inner class CustomListAdapter(
Expand Down Expand Up @@ -162,7 +162,7 @@ class NewsFragment : ListFragment() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val mActivity = activity as MainActivity
mActivity = activity as MainActivity
mActivity.closeKeyboard()
setHasOptionsMenu(true)

Expand All @@ -175,6 +175,7 @@ class NewsFragment : ListFragment() {
savedInstanceState: Bundle?,
): View {
_binding = FragmentNewsBinding.inflate(inflater, container, false)
mActivity.hideBottomBar()
return binding.root
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class DiningInsightsCardAdapter(
private const val DINING_DOLLARS_PREDICTIONS = 2
private const val DINING_SWIPES_PREDICTIONS = 3

const val START_DAY_OF_SEMESTER = "2024-01-18"
const val START_DAY_OF_SEMESTER = "2024-08-27"
private const val DAYS_IN_SEMESTER = 117f
}

Expand Down

0 comments on commit 93d53a5

Please sign in to comment.