1

我想flavorDimensions在我的应用程序 gradle 中构建版本应用程序,如下所示

 androidExtensions {
    experimental = true
}

flavorDimensions "version", "a"

productFlavors {

    yooooo {
        dimension "version"
    }

    hei {
        dimension "version"
    }

    six {
        dimension "a"
    }

    fsdf {
        dimension "a"
    }

}

当我运行我的应用程序时,出现此错误

e: /Users/wanbo/Dev/Android/workspace/me/test/app/src/yooooo/java/com/werb/test/MainActivity.kt: (12, 9): Unresolved reference: tttt

在使用 android 扩展的活动中找不到我的视图

我的活动代码

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import kotlinx.android.synthetic.yooooo.activity_main.*

class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    tttt.text = "2222"
}}

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"
tools:context=".MainActivity">

 <TextView
    android:id="@+id/tttt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

4

1 回答 1

0

风味代码仅在您使用左侧菜单中的“构建变体”时才会被确认,否则它将是红色的。

您有 2 个选项。

1) 使用 Flavor Check 来查看您所处的风格(在 If Check 中),以避免接触不应该在其他风格中运行的错误代码。

或者

2) 为仅在该风味中使用的文件创建各自的风味文件夹。如果任何其他文件引用 tttt 那么它也成为特定于风味的实现。您将需要为所有风格创建 MainActivity 的实例,但仅在 myFlavor/MainActivity 中引用正确风格下的 tttt。

希望对您有所帮助,请记住构建变体位于左下方菜单中,您可以切换风味变体进行测试。

于 2018-09-25T13:28:21.030 回答