Guest User

Untitled

a guest
Jun 20th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <style name="AppTheme.NoActionBar">
  2. <item name="coordinatorLayoutStyle">@style/Widget.Design.CoordinatorLayout</item>
  3. </style>
  4.  
  5. <resources>
  6.  
  7. <!-- Base application theme. -->
  8. <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  9. <!-- Customize your theme here. -->
  10. <item name="colorPrimary">@color/colorPrimary</item>
  11. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  12. <item name="colorAccent">@color/colorAccent</item>
  13. </style>
  14.  
  15. <style name="AppTheme.NoActionBar">
  16. <item name="windowActionBar">false</item>
  17. <item name="windowNoTitle">true</item>
  18. </style>
  19.  
  20.  
  21. <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
  22.  
  23. Couldn't resolve resource @style/Widget.Design.CoordinatorLayout<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
  24.  
  25. </resources>
  26.  
  27. android {
  28. compileSdkVersion 28
  29. defaultConfig {
  30. applicationId "com.example.notes"
  31. minSdkVersion 23
  32. targetSdkVersion 28
  33. versionCode 1
  34. versionName "1.0"
  35. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  36. }
  37. buildTypes {
  38. release {
  39. minifyEnabled false
  40. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  41. }
  42. }
  43. }
  44.  
  45. dependencies {
  46. implementation fileTree(dir: 'libs', include: ['*.jar'])
  47. implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
  48. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  49. implementation 'com.android.support:design:28.0.0-alpha3'
  50. testImplementation 'junit:junit:4.12'
  51. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  52. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  53. }
Add Comment
Please, Sign In to add comment