无法运行我的应用程序

时间:2017-12-03 16:10:02

标签: java android

我试图在Android工作室中创建一个简单的Android应用程序界面。我在线学习了一些教程。

这里有一些关于我试图完成的事情的图片: Gradle Preview

我根本不知道我错在哪里。我已多次检查过,但我的应用程序无法运行。

这里是代码的链接:   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'

但我得到了这个无法结束的错误: logcat

1 个答案:

答案 0 :(得分:0)

您的 XML按钮(第30行和第45行)与您在MainActivity.onCreate()中完成的按钮初始化之间存在未命中类型匹配(行号:10,17和18) )。

选择您要使用的类型 info.hoang8f.widget.FButton 按钮