Мой фрагмент отображается под панелью инструментов независимо от того, как я изменяю ограничения - PullRequest
0 голосов
/ 25 сентября 2018

Независимо от того, как я добавляю ограничения, с точки зрения моего фрагмента, который содержит RecyclerView, ничего не меняется.

Я добавил панель инструментов:

OnCreate в MainActivity

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)//TODO find inconsistencies
    val demo = DemoDataBuilder()


    // Set the toolbar as support action bar
    setSupportActionBar(toolbar)

    // Now get the support action bar
    val actionBar = supportActionBar

    // Set toolbar title/app title
    actionBar!!.title = "AwezaMed"

    // Set action bar/toolbar sub title
    actionBar.subtitle = "App subtitle"

    // Set action bar elevation
    actionBar.elevation = 4.0F

    toolbar.setNavigationIcon(R.drawable.ic_arrow_back_black_24dp)
    toolbar.setNavigationOnClickListener { _ -> onBackPressed()}

    startCategoryHome(savedInstanceState)

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/root_layout">


<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:background="?attr/colorPrimary"
    android:minHeight="57dp"
    android:padding="1dp"
    app:layout_constraintTop_toTopOf="parent"
    app:subtitleTextColor="#f5fbff"
    app:titleTextColor="#fff" />


<fragment
    android:id="@+id/categoyList_fragment"
    android:name="za.co.aweza.awezamediphrases.fragments.CategoryListFragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="112dp"
    app:layout_constraintTop_toBottomOf="@+id/toolbar"
    tools:layout="@layout/fragment_hcp_category" />

</android.support.constraint.ConstraintLayout>

Вы заметите, что в приведенном выше коде макета у меня есть очень надуманное ограничение, которое я пытался использовать.

Вот как это выглядит в designView: enter image description here

Но независимо от того, что я пытаюсь сделать, первая ячейка RV во фрагменте находится в основном под панелью инструментов.Чего мне не хватает?

Ответы [ 2 ]

0 голосов
/ 25 сентября 2018

@ Ответ EliodeBeirut сработал, но я обнаружил, что изменение макета activity_main.xml с макета Constraint на Linear Layout также работает.

0 голосов
/ 25 сентября 2018

вместо фрагмента поместите это в xml:

`<FrameLayout
    android:id="@+id/frameLayout_fragment_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="@id/toolbar" />`

Замените макет фрейма на любой фрагмент, который вы хотите, используя эту функцию:

 ` fun openFragment(fragment: Fragment) {
    val transaction = supportFragmentManager.beginTransaction()
    transaction.replace(R.id.frameLayout_fragment_container, fragment)
    transaction.addToBackStack(null)
    transaction.commit()
}`
...