I am an absolute beginner in android studio. I have trying to create my first application with "Basic Layout" in studio and facing this above problem. The actual issue is that there is no floating button in the bottom right side and the the text in the center which should be "Hello World" is not there but instead showing a message "android...CoordinatorLayoutStyle
".
I have literally tried every solution i have found on the internet plus reinstalling the studio multiple times. When nothing worked, i formatted the whole pc and installed fresh. But nothing worked. I tried installing studio on other PC with same config. it worked fine.
i am an absolute beginner with this, so anyone who's helping please explain everything
Here is my gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.anish.abc"
minSdkVersion 15
targetSdkVersion 28
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:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
implementation 'com.android.support:design:28.0.0-alpha3'
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'
}