我面临一个非常奇怪的问题。
我正在使用this library来添加材质设计元素,例如浮动按钮。
一切运行良好,但是Android Studio设计师开始警告我com.gc.materialdesign.view.ButtonFloat
无法找到:
当我更改为ButtonFlat
时,设计师会要求更改为ButtonFloat
等。
奇怪的是,在我的XML中,类是已知的并且没有错误。
另外,按钮在模拟器中完美显示:
有问题的代码如下:
<com.gc.materialdesign.views.ButtonFloat
android:id="@+id/buttonFloatTakePicture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginEnd="20dp"
android:layout_marginTop="50dp"
materialdesign:animate="true"
materialdesign:iconDrawable="@mipmap/ic_photo"
android:onClick="takePhoto" />
我的build.gradle这个模块:
repositories {
jcenter()
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
minSdkVersion 21
targetSdkVersion 22
}
}
dependencies {
compile 'com.github.navasmdc:MaterialDesign:1.+@aar'
compile 'com.nineoldandroids:library:2.4.+'
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:recyclerview-v7:22.1.1'
compile 'com.nineoldandroids:library:2.4.+'
compile 'com.soundcloud.android:android-crop:0.9.10@aar'
}
这很烦人。我试图多次清理和构建项目。你有什么主意吗 ?提前谢谢。
答案 0 :(得分:0)
有时android studio无法正确显示自定义布局标签。那时,我需要关闭项目并关闭android studio。然后,再次重新打开。它对我有用。