我正在尝试将一些现有的应用程序代码拆分为android库模块。将我的工作代码复制到模块目录中时,我遇到了注释问题,其中@EViewGroup(R.layout.dialog_action_item)
行在消息中投射了编译时错误
注释参数必须是编译时常量
当应用程序模块中使用完全相同的代码时,我看不到为什么这突然成为问题。这两个模块gradle文件都实现相同的依赖关系,并且布局文件也是旧布局文件的副本。
查看文件:
import android.content.Context
import android.graphics.Typeface
import android.os.Build
import android.support.annotation.AttrRes
import android.support.v4.content.ContextCompat
import android.util.AttributeSet
import android.widget.FrameLayout
import com.lam.locationmapservicelib.R
import kotlinx.android.synthetic.main.dialog_action_item.view.*
import com.lam.locationmapservicelib.utils.ImageLoader
import com.lam.locationmapservicelib.utils.ViewManager
import com.lam.locationmapservicelib.views.dialog.DialogActionItemModel
import org.androidannotations.annotations.EViewGroup
@EViewGroup(R.layout.dialog_action_item)
open class DialogActionItem : FrameLayout {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet?, @AttrRes defStyleAttr: Int) : super(context, attrs, defStyleAttr)
some methods..
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="@dimen/dialog_button_size">
<TextView
android:id="@+id/buttonText"
style="@style/Body1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginEnd="@dimen/padding_16"
android:layout_marginStart="@dimen/padding_16"
android:ellipsize="end"
android:lines="1"
android:textAlignment="center" />
</FrameLayout>
等级:
kapt 'org.androidannotations:androidannotations:4.4.0'
implementation 'org.androidannotations:androidannotations-api:4.4.0'
构建错误堆栈:
`e: ...\LocationMapService\locationmapservicelib\build\tmp\kapt3\stubs\debug\com\lam\locationmapservicelib\fragments\map\MapFragment.java:5: error: incompatible types: <null> cannot be converted to int
@org.androidannotations.annotations.EFragment(value = null)
^
e: ...\LocationMapService\locationmapservicelib\build\tmp\kapt3\stubs\debug\com\lam\locationmapservicelib\views\dialog\Dialog.java:5: error: incompatible types: <null> cannot be converted to int
@org.androidannotations.annotations.EViewGroup(value = null)
^
e: ...\LocationMapService\locationmapservicelib\build\tmp\kapt3\stubs\debug\com\lam\locationmapservicelib\views\dialog\views\DialogActionItem.java:5: error: incompatible types: <null> cannot be converted to int
@org.androidannotations.annotations.EViewGroup(value = null)`
gradle和布局文件与DialogActionItem类位于同一模块(locationmapservicelib)中。
非常感谢您的帮助!
答案 0 :(得分:1)
不幸的是,R
字段在Android库项目中不是常量,因此我们不能简单地将它们放入批注参数中。
有两种解决方法:
resName
参数并传递一个字符串:@EViewGroup(resName = "dialog_action_item")
R2
类中生成最终字段,并使用它们:@EViewGroup(R2.layout.dialog_action_item)
您必须为这两个都向AndroidAnnotations添加配置。参见detailed documentation for library projects。