我正在尝试在编辑文本中实现浮动标签,这需要 com.android.support:design:23.0.1 ,但设计支持库没有被编译。
这是app和项目的build.gradle。请指出错误或提出建议。
的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.searchable"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:design:22.2.0'
}
PROJECT build.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
allprojects {
repositories {
jcenter()
}
错误
错误:(24,13)无法解决:com.android.support:design:22.2.0
我也尝试下载jar文件并将其作为库包含在内。 在这种情况下编译不会造成任何问题,但XML文件在构建期间返回以下错误。
XML
<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_password"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/input_password"
android:inputType="textPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="password" />
</android.support.design.widget.TextInputLayout>
错误
以下类无法实例化 -android.support.design.TextInputLayout(Open Class,Show Exception,Clear Cache)
当我点击Open Class链接时,jar反编译器显示了类源代码,所以我假设你在包含库时没有问题。
修改
我发现在Gradle中包含任何依赖 存在 问题,并且无论包含哪个库,它都会返回相同的编译错误 / EM>
答案 0 :(得分:1)
将compileSdkVersion更改为23并将其添加到app level build.gradle文件
compile 'com.android.support:design:23.4.0'
答案 1 :(得分:0)
可能会帮助你,因为我在这种情况下尝试过.. 放入Gradle依赖项。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
}
而且你已经像这样初学了
TextInputLayout Password;
Password= (TextInputLayout) findViewById(R.id.input_password);
谢谢..