Skip to content

Commit

Permalink
Fixes mozilla-mobile#431: Scroll-down on the home screen messes up ev…
Browse files Browse the repository at this point in the history
…erything
  • Loading branch information
colintheshots committed Feb 12, 2019
1 parent 94b52be commit 443a1bf
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
3 changes: 1 addition & 2 deletions app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ class HomeFragment : Fragment() {
val view = inflater.inflate(R.layout.fragment_home, container, false)
TabsComponent(view.homeLayout, bus, TabsState(requireComponents.core.sessionManager.sessions))
SessionsComponent(view.homeLayout, bus)
layoutComponents(view)
ActionBusFactory.get(this).logMergedObservables()
return view
}
Expand All @@ -58,8 +59,6 @@ class HomeFragment : Fragment() {

(activity as AppCompatActivity).supportActionBar?.hide()

layoutComponents(view.homeLayout)

getSafeManagedObservable<TabsAction>()
.subscribe {
when (it) {
Expand Down
56 changes: 29 additions & 27 deletions app/src/main/java/org/mozilla/fenix/home/HomeLayouts.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,40 +4,42 @@

package org.mozilla.fenix.home

import androidx.constraintlayout.widget.ConstraintLayout
import android.view.View
import androidx.constraintlayout.widget.ConstraintLayout.LayoutParams.PARENT_ID
import kotlinx.android.synthetic.main.component_sessions.*
import kotlinx.android.synthetic.main.component_tabs.*
import kotlinx.android.synthetic.main.fragment_home.*
import kotlinx.android.synthetic.main.tab_list_header.*
import kotlinx.android.synthetic.main.component_sessions.view.*
import kotlinx.android.synthetic.main.component_tabs.view.*
import kotlinx.android.synthetic.main.fragment_home.view.*
import kotlinx.android.synthetic.main.tab_list_header.view.*
import org.jetbrains.anko.constraint.layout.ConstraintSetBuilder.Side.BOTTOM
import org.jetbrains.anko.constraint.layout.ConstraintSetBuilder.Side.END
import org.jetbrains.anko.constraint.layout.ConstraintSetBuilder.Side.START
import org.jetbrains.anko.constraint.layout.ConstraintSetBuilder.Side.TOP
import org.jetbrains.anko.constraint.layout.applyConstraintSet

fun HomeFragment.layoutComponents(layout: ConstraintLayout) {
layout.applyConstraintSet {
tabs_header {
connect(
TOP to BOTTOM of homeDivider,
START to START of tabs_list,
END to END of PARENT_ID
)
}
tabs_list {
connect(
TOP to BOTTOM of tabs_header,
START to START of PARENT_ID,
END to END of PARENT_ID
)
}
session_list {
connect(
TOP to BOTTOM of tabs_list,
START to START of PARENT_ID,
END to END of PARENT_ID
)
fun HomeFragment.layoutComponents(layout: View) {
with(layout) {
homeLayout.applyConstraintSet {
tabs_header {
connect(
TOP to BOTTOM of homeDivider,
START to START of tabs_list,
END to END of PARENT_ID
)
}
tabs_list {
connect(
TOP to BOTTOM of tabs_header,
START to START of PARENT_ID,
END to END of PARENT_ID
)
}
session_list {
connect(
TOP to BOTTOM of tabs_list,
START to START of PARENT_ID,
END to END of PARENT_ID
)
}
}
}
}

0 comments on commit 443a1bf

Please sign in to comment.