我试图在Android工作室中创建一个简单的Android应用程序界面。我在线学习了一些教程。
我根本不知道我错在哪里。我已多次检查过,但我的应用程序无法运行。
这里是代码的链接: MainActivity.java, activity_main.xml
这里面是我的build.gradle(module.app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "pam.pohat_4"
minSdkVersion 23
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
//Libary
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.firebase:firebase-database:10.2.0'
compile 'info.hoang8f:fbutton:1.0.5'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
您的 XML按钮(第30行和第45行)与您在MainActivity.onCreate()中完成的按钮初始化之间存在未命中类型匹配(行号:10,17和18) )。
选择您要使用的类型 info.hoang8f.widget.FButton 或按钮。