我想在我的Android应用程序中使用fragments,但我无法在fragment类中导入FragmentTitleBinding
我在互联网上尝试了所有可能的解决方案
1.我检查了xml文件中的布局标签
1.我编辑build.gradle文件
1.同步项目
import com.example.android.navigation.databinding.FragmentTitleBinding
class TitleFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
val binding : com.example.android.navigation.databinding.FragmentTitleBinding=
DataBindingUtil.inflate(inflater,R.layout.fragment_title,container,false)
return binding.root;
}
}
- 片段XML*
<?xml version="1.0" encoding="utf-8"?>
<layout 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"
tools:context="com.example.android.navigation.TitleFragment">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/titleConstraint"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/playButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/horizontal_margin"
android:layout_marginEnd="@dimen/horizontal_margin"
android:paddingStart="@dimen/button_padding"
android:paddingEnd="@dimen/button_padding"
android:text="Play"
android:textColor="@color/colorAccent"
android:textSize="@dimen/button_text_size"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleImage" />
<ImageView
android:id="@+id/titleImage"
android:layout_width="0dp"
android:layout_height="@dimen/image_header_height"
android:layout_marginStart="@dimen/horizontal_margin"
android:layout_marginEnd="@dimen/horizontal_margin"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@+id/playButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/android_trivia" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
- 构建.gradle*
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
dataBinding {
enabled = true
}
defaultConfig {
applicationId 'com.example.android.navigation'
minSdkVersion 19
targetSdkVersion 28
vectorDrawables.useSupportLibrary = true
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
buildToolsVersion = '28.0.3'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$version_kotlin"
// Constraint Layout
implementation "androidx.constraintlayout:constraintlayout:$version_constraint_layout"
// Core
implementation "androidx.core:core:$version_core"
// Material Design
implementation "com.google.android.material:material:$version_material"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
kapt 'com.android.databinding:compiler:3.3.0'
}
kapt {
generateStubs = true
}
我想解析FragmentTitleBinding
,但它给出了一个未解析的引用错误
4条答案
按热度按时间xwmevbvl1#
由于数据绑定的执行方式与注解处理器类似,因此您必须清理项目,然后重新生成。如果这种方式不起作用,请尝试以下操作:1.单击文件菜单2.选择使缓存失效/重新启动
我希望它能工作请注意,您数据绑定类与布局名称同名
更新
请确保在依赖项中包含这些内容
和
您还需要检查SDK工具
中的存储库
krugob8w2#
这个问题快把我逼疯了,即使尝试了上面的修复程序,问题仍然存在。这很坚韧,因为如果你正在阅读这个博客,它很可能是你的工作方式通过'AndroidKotlinFundamentals 03.1:创建一个fragment“在线课程,你最不需要的就是在学习的时候出现一个无法解释的bug。
在我的例子中,错误是IDE在导入栈的顶部添加了“import android.R”。删除该导入代码,问题就会消失。
在Android Studio中,有一条与有问题的“import android.R”代码相关的信息性消息,内容如下:
我希望这对其他像我一样的学习者有帮助
7rtdyuoh3#
请将此添加到Android中的build.gradle(应用程序)
您可以尝试以下选项创建空白TitleFragment.kt后,转到fragment_title.xml,将其替换为
现在转到生成-〉清理项目,生成-〉重建项目。如果仍然出现错误,则文件-〉使缓存无效/重新启动。
你也可以看看这个线程。https://github.com/udacity/andfun-kotlin-android-trivia/issues/9
wgxvkvu94#
通常,当我们创建fragment_title时,创建的默认文件是-〉x1c 0d1x
因此,请尝试将更改为,这样就可以避免FragmentTitleBinding错误。