Help with android studio

0

What happens is that I see the cell phone interface, but I can not visualize what is written, why will it be?

If they are fixed, it has texts (textView), but what is written is not displayed.

    
asked by nicolasyo1WWE 16.07.2018 в 05:20
source

1 answer

0

I had the same problem, what worked for me was to modify the file builde.gradle (Module: app) of Gradle Scripts in the "dependencies" part in the following way:

It was originally like this:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

And after modifying it, it should look like this:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

And you synchronize them again ... And that's it, that should solve your problem.

    
answered by 17.07.2018 в 03:28