例如,我写了一个SuperTextView
.
我的项目里,除了依赖了很多module
,当我把刚刚写的自定义View放在非主module中.那么在布局中使用就不会有任何的提示.当我在写<SuperTextView
时没有任何提示,当我手动写完<com.xxx.xxx.SuperTextView></com.xxx.xxx.SuperTextView>
时,我再去写例如
android:layout_width="wrap_content"
android:layout_height="wrap_content"
也没有任何提示.
如何才能有提示呢?
巴扎黑2017-04-17 17:39:10
Are you build.gradle
中添加了该module
dependent
compile project(':moduleName')