未解决的参考:kotlinx

我正尝试在Android Studio中尝试Kotlin和Kotlin Android扩展。 我已经在Ubuntu 14.04上的Android Studio v 1.5.1以及OS X El Capitan上的Android Studio v 1.5.1上尝试了这一点,获得了相同的结果。

这是我在做什么:

  1. 我安装了Kotlin插件1.0.0-beta-35950-IJ141-11
  2. 创build一个新的空白Android项目
  3. 将MainActivity文件转换为Kotlin(通过help-> findaction->将文件转换为kotlin)
  4. 为Kotlinconfiguration项目

然后我进入生成的content_main.xml文件并为“Hello World!”添加一个id(hello)。 TextView中。

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="com.gmail.npnster.mykotlinfirstproject.MainActivity" tools:showIn="@layout/activity_main"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" android:id="@+id/hello" /> </RelativeLayout> 

然后在转换的MainActivity中添加一行来设置TextView。 (如下所示)。 然后Android Studio会提示我(通过alt-enter)插入这一行(如下所示)

 import kotlinx.android.synthetic.main.content_main.* 

所以在这一点上一切似乎都很好

但是当我尝试编译这个我得到

 Unresolved reference: kotlinx Unresolved reference: kotlinx Unresolved reference: hello 

请注意,我没有安装Kotlin Android扩展程序插件。 就在几天前,现在应该包含在主插件中,并被标记为过时。 (事实上​​,如果您在安装最新的插件时尝试安装它,则不会安装任何新的插件)

任何人看到我在做什么错了?

主要活动

 import android.os.Bundle import android.support.design.widget.FloatingActionButton import android.support.design.widget.Snackbar import android.support.v7.app.AppCompatActivity import android.support.v7.widget.Toolbar import android.view.View import android.view.Menu import android.view.MenuItem import kotlinx.android.synthetic.main.content_main.* class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val toolbar = findViewById(R.id.toolbar) as Toolbar setSupportActionBar(toolbar) print("setting text view value to hey") hello.text = "hey" val fab = findViewById(R.id.fab) as FloatingActionButton fab.setOnClickListener { view -> Snackbar.make(view, "Replace this with your own action", Snackbar.LENGTH_LONG).setAction("Action", null).show() } } override fun onCreateOptionsMenu(menu: Menu): Boolean { // Inflate the menu; this adds items to the action bar if it is present. menuInflater.inflate(R.menu.menu_main, menu) return true } override fun onOptionsItemSelected(item: MenuItem): Boolean { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. val id = item.itemId //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true } return super.onOptionsItemSelected(item) } } 

在我们的buildscript的依赖关系中添加kotlin-android-extensions

1.在您的项目级build.gradle

 buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" } } 

并应用kotlin-android-extensions插件:

2.在你的模块级的build.gradle

 apply plugin: 'kotlin-android-extensions' 

原始答案:

这很可能是Kotlin插件中的一个错误。 我在跟踪器上提交了一个问题 。

当你使用Android Studio 2.0和kotlin 1.0.1-2时,你会想出同样的错误。 你不能在你的项目的build.gradle中configurationkotlin android扩展,你需要在每个模块的build.gradle中configuration和kotlin android扩展,像这样:

 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' buildscript { ext.kotlin_version = '1.0.1-2' repositories { jcenter() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" } } android { compileSdkVersion 23 buildToolsVersion "24.0.0 rc2" defaultConfig { applicationId "com.dazd.kotlindemo" minSdkVersion 14 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } sourceSets { main.java.srcDirs += 'src/main/kotlin' } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.3.0' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" } 

最重要的是,即使通过包含kotlin android扩展的kotlin插件,您也需要在您的Module的bulid.gradle中configurationkotlin-android-extensions,如下所示:

 ... apply plugin: 'kotlin-android-extensions' ... classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" 

当然,你可以在项目的build.gradle中configurationkotlin插件的类path。

我在官方文档中找不到它,但是您必须通过将以下内容添加到build.gradle文件来应用插件:

 apply plugin: 'kotlin-android-extensions' 

包含kotlin-android-extensions依赖的buildscript块显然需要在app-module build.gradle中,而不是在顶层。

我发现为什么我没有工作。 我的块被错位,并通过移动插件之前的buildscript{}块如下我得到它的工作:

 buildscript { ext.kotlin_version = '1.0.0-beta-3595' ext.anko_version = '0.8.1' repositories { jcenter() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" } } apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.kotlin" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } sourceSets { main.java.srcDirs += 'src/main/kotlin' } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile "org.jetbrains.anko:anko-sdk15:$anko_version" compile "org.jetbrains.anko:anko-support-v4:$anko_version" } 

这是如何为我工作。 当我第一次在Project中configurationKotlin时,我select了1.1.2-3版本而不是1.1.2-4,并在build.gradle应用程序文件中添加了以下行

 apply plugin: 'kotlin-android-extensions' 

之后,我同步了构build,并按预期工作。