- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试构建应用程序,但不断收到/Users/gouravkarwasara/Desktop/News2/app/build/generated/source/kapt/debug/com/gourav/news/DataBinderMapperImpl.java:9:错误:找不到符号
导入 com.gourav.news.databinding.ActivityDetailBindingImpl;
^
符号: ActivityDetailBindingImpl 类
位置:包 com.gourav.news.databinding
这个错误。
我已经尝试过清理和构建也无效并重新启动
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.gourav.news"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0-alpha02'
implementation 'androidx.core:core-ktx:1.1.0-alpha04'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
kapt "androidx.lifecycle:lifecycle-compiler:2.0.0"
implementation "androidx.room:room-runtime:2.0.0"
kapt "androidx.room:room-compiler:2.0.0"
implementation 'com.google.android.material:material:1.1.0-alpha03'
implementation "com.squareup.retrofit2:retrofit:2.4.0"
implementation "com.squareup.retrofit2:converter-gson:2.4.0"
implementation "com.squareup.okhttp3:logging-interceptor:3.11.0"
// Retrofit for networking
implementation "com.squareup.retrofit2:retrofit:2.4.0"
implementation "com.squareup.retrofit2:converter-gson:2.4.0"
implementation "com.squareup.okhttp3:logging-interceptor:3.11.0"
//Timber for logging
implementation "com.jakewharton.timber:timber:4.7.1"
// Image Loading and Caching
implementation "com.github.bumptech.glide:glide:4.8.0"
annotationProcessor "com.github.bumptech.glide:compiler:4.8.0"
implementation "com.google.firebase:firebase-core:16.0.7"
}
<?xml version="1.0" encoding="utf-8"?>
<layout>
<data>
<import type="com.gourav.news.utils.BindingUtils" />
<variable
name="article"
type="com.gourav.news.model.Article" />
</data>
<ScrollView 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"
xmlns:bind="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
tools:context=".DetailActivity">
<View
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="@id/tv_news_source"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_news_image" />
<ImageView
android:id="@+id/iv_news_image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:contentDescription="@string/image_desc"
android:foreground="@drawable/news_image_gradient"
app:layout_constraintDimensionRatio="h,16:9"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
bind:articleUrl="@{article.url}"
bind:urlToImage="@{article.urlToImage}" />
<ImageButton
android:id="@+id/iv_save"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginEnd="4dp"
android:background="?selectableItemBackgroundBorderless"
android:contentDescription="@string/image_desc_save_button"
app:layout_constraintEnd_toStartOf="@id/iv_share"
app:layout_constraintTop_toTopOf="@id/tv_time"
app:srcCompat="@drawable/ic_save" />
<ImageButton
android:id="@+id/iv_share"
android:layout_width="48dp"
android:layout_height="48dp"
android:background="?selectableItemBackgroundBorderless"
android:contentDescription="@string/image_desc_share_button"
app:layout_constraintEnd_toStartOf="@id/guideline_right"
app:layout_constraintTop_toTopOf="@id/tv_time"
app:srcCompat="@drawable/ic_share" />
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@{BindingUtils.formatDateForDetails(article.publishedAt)}"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="@id/guideline_left"
app:layout_constraintTop_toBottomOf="@+id/tv_news_title"
tools:text="@tools:sample/date/ddmmyy" />
<TextView
android:id="@+id/tv_news_source"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:paddingBottom="18dp"
android:text="@{article.source.name}"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="@id/guideline_left"
app:layout_constraintTop_toBottomOf="@id/tv_time"
tools:text="The Washington Post" />
<TextView
android:id="@+id/tv_news_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:lineSpacingMultiplier="1.1"
android:text="@{article.title}"
android:textColor="@color/colorAccent"
android:textSize="24sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="@id/guideline_right"
app:layout_constraintStart_toStartOf="@id/guideline_left"
app:layout_constraintTop_toBottomOf="@id/iv_news_image"/>
<TextView
android:id="@+id/tv_news_desc"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:alpha="0.6"
android:lineSpacingMultiplier="1.3"
android:text="@{article.description}"
android:textColor="@color/colorAccent"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="@id/guideline_right"
app:layout_constraintStart_toStartOf="@id/guideline_left"
app:layout_constraintTop_toBottomOf="@id/tv_news_source"
tools:layout_editor_absoluteY="365dp"/>
<TextView
android:id="@+id/tv_news_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:alpha="0.6"
android:lineSpacingMultiplier="1.3"
android:text="@{BindingUtils.truncateExtra(article.content)}"
android:textColor="@color/colorAccent"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="@id/guideline_right"
app:layout_constraintStart_toStartOf="@id/guideline_left"
app:layout_constraintTop_toBottomOf="@id/tv_news_desc"/>
<Button
android:id="@+id/btn_read_full"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:background="@drawable/button_selector"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:text="@string/button_read_full_story"
android:textSize="16sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_news_content" />
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="?actionBarItemBackground"
android:fitsSystemWindows="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/ic_close" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="12dp" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_end="12dp" />
<androidx.constraintlayout.widget.Barrier
android:id="@+id/bottom_barrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="bottom"
app:constraint_referenced_ids="tv_news_desc,tv_news_content,tv_news_title" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</layout>
class DetailActivity : AppCompatActivity() {
private lateinit var binding: ActivityDetailBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = DataBindingUtil.setContentView(this, R.layout.activity_detail)
}
}
最佳答案
当我在 <data>
中更改变量名时,这发生在我身上但忘了改变意见。更改后,此错误已解决。
关于kotlin - 错误 : cannot find symbol import com. gourav.news.databinding.ActivityDetailBindingImpl;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54696338/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我有 .otf 和 .ttf 格式的字体。我想在我的 Apple News 文章中使用它,但我不断收到错误 Error: Custom font (postscript name=CustomFont
我已经完成了 CI 文档中包含的众所周知的“新闻”教程。有时我的链接字符串中会出现双“新闻/”段,如下所示:“/codeig/news/news/entry”,有时在重新加载页面后一切正常。我应该提一
Apple 似乎没有关于他们如何在 Apple News 中为您的 channel 提取主图像的文档。 这个在这里: 我的网站上有 og:image 标签 + apple-touch-icon met
旧版 Facebook News Feed 和新版之间是否存在问题? 我的位置开放图集合的输出之间存在冲突。 在旧的新闻提要中,我在使用 Open Graph 进行跨平台 checkin 时得到了这个
我经历了安装refinerycms-news引擎的过程; 我将 refinerycms-news 添加到我的 gemfile 中。 gem "refinerycms-news", '~> 2.0.0'
我正在实现一个管理子域,并且已经用谷歌搜索试图找到这个问题的答案,但是我还没有找到另一个实例。 我的子域部分的路由如下所示: constraints :subdomain => 'admin' do
如何测试/验证我的 Google 新闻站点地图? 如果我去搜索控制台,我可以选择添加/测试站点地图。但是它说我有一个无效的 XML 标签: 父标签:出版物 标签:关键词 但我可以看到这个标签是有效的,
在支持苹果新闻共享方面,请您能帮我一下, 我的共享扩展名info.plist包含: NSExtension NSExtensionAttributes NSExte
我们现在已经在 Apple News 上建立了多个网站。对于我们一半的网站(构建在一个平台上),95% 的时间图像都显示在文章 ListView 中。我们网站的另一半在文章列表中显示图像的概率为 0%
我可以使用CAShapeLayer和UIBezierPath画圆,也可以使用CAShapeLayer.strokeEnd这个属性来控制进度。但是路径和时间的快速滚动,我不知道如何实现。 现在我认为方法
我想每小时从右到左保留元素 box1 的每个内部每隔 24 小时/一天,元素 box1、box2 和 box 3 将从底部向上.. .box { display: flex; flex-dir
如何像facebook news feed一样在一个页面显示多表数据? 示例表/事件、任务/ 我想按日期时间对它们进行排序,最新的在顶部。我可以通过 php 来完成,但我需要 mysql 方式。
我正在尝试让这个新闻自动收报机工作。出于某种原因,它将在第二个列表项之后重新启动,这不是我想要的 - 我希望它在列表项中循环直到最后。这个脚本有什么问题? 这是一个 JSFiddle HTML Thi
我的客户要求在他们的网站上提供自动旋转的新闻提要类型的东西。内容不会改变,但会自动从一个元素移动到下一个。它还将允许用户将鼠标悬停在之前的元素上并将它们保持在原位。 您在 Yahoo 主页上找到的内容
我正在尝试使用official API找到每个黑客新闻用户的业力(点) 。我是编程新手。 以下是我为获取某个特定用户的业力而编写的代码片段。 HN 上有近 30 万个用户帐户。 var request
有谁知道如何构建“新闻和天气”应用程序使用的那种标签? see here http://img51.imageshack.us/img51/8788/tabsd.png 这意味着可以向左和向右滚动的选
一篇新闻文章就像 Awesome News bla bla bla... 如果我想包含相关新闻并对其进行标记怎么办? Related News 1
我正在使用类似于 facebook 的 PHP/MySQL 设计一个新闻提要系统。 我之前也问过类似的问题,但现在我改变了设计,我正在寻找反馈。 示例新闻: User_A commented on U
这个BUG让我真的很无语: 第一次遇到过,在更新 内容数据时出现过,后来解决了,但没记录下来是如何解决的。 这次又遇到了。 主要原因可能是: 1、更新数据库缓存、临时文件缓存等。这些一堆垃圾
我是一名优秀的程序员,十分优秀!