Неразрешенная ссылка: frame_layout

#android #xml #kotlin

#Android #xml #kotlin

Вопрос:

Я столкнулся с проблемой «Неразрешенная ссылка: frame_layout». Это написано здесь:

   fun replaceFragment(fragment:Fragment, istransition:Boolean){
    val fragmentTransition = supportFragmentManager.beginTransaction()

    if (istransition){
        fragmentTransition.setCustomAnimations(android.R.anim.slide_out_right,android.R.anim.slide_in_left)
    }
    fragmentTransition.add(R.id.frame_layout,fragment).addToBackStack(fragment.javaClass.simpleName).commit()
}
}
 

Он не показывает никаких проблем в проекте, но когда я его создаю, появляется ошибка.

Существует activity_main.xml где я получаю frame_layout:

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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:background="@color/colorPrimaryDark"
    tools:context=".MainActivity">


    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:id="@ id/frame_layout"/>

</androidx.constraintlayout.widget.ConstraintLayout>
 

Ответ №1:

Вы должны проверить наличие import {YOUR_PACKAGE}.R

импорт R должен относиться к тому же модулю, где вы activity_main.xml размещены.

Например: com.example.android является ли ваш app: модуль пакетом

В этом месте ваш импорт должен быть import com.example.android.R

или

Вы можете напрямую добавить {YOUR_PACKAGE}.R.id.frame_layout

     fun replaceFragment(fragment:Fragment, istransition:Boolean) {
            val fragmentTransition = supportFragmentManager.beginTransaction()
        
            if (istransition) {
                 fragmentTransition.setCustomAnimations(
                       android.R.anim.slide_out_right, 
                       android.R.anim.slide_in_left
                ) 
            }
            fragmentTransition.add({YOUR_PACKAGE}.R.id.frame_layout,fragment)
                  .addToBackStack(fragment.javaClass.simpleName)
                  .commit()
        
  }