代码之家  ›  专栏  ›  技术社区  ›  noogui

Android Studio(3.1.4)为Design+Blueprint呈现问题

  •  2
  • noogui  · 技术社区  · 6 年前

    这张照片说明了这一切:

    enter image description here

    enter image description here

    build.gradle公司(模块:应用程序)

    apply plugin: 'com.android.application'
    apply plugin: 'kotlin-android'
    apply plugin: 'kotlin-android-extensions'
    
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "chatchattan.nooguiquirks.com.chatchattan"
            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"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
        implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
        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'
        implementation 'com.android.support:recyclerview-v7:28.0.0-rc01'
    }
    

    1. 使缓存失效/重新启动

    2. 使用应用程序主题

    有什么好主意吗?: )

    6 回复  |  直到 6 年前
        1
  •  13
  •   Rahul Chokshi    6 年前

    按照下面的步骤走就行了

    1打开“设计布局”窗口,点击应用程序主题顶部

    enter image description here

    enter image description here

        2
  •  2
  •   T.akanda    6 年前

    在样式.xml

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    

        3
  •  1
  •   Muhammad Shiddiq    6 年前

    你必须换衣服模块:应用程序

        implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
    

        implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
    

    然后同步它

        4
  •  0
  •   Kishan Viramgama    6 年前
        dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:28.1.1'
        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'
        implementation 'com.android.support:recyclerview-v7:28.1.1'
    }
    
        5
  •  0
  •   5ec20ab0    6 年前

    最新的支持库版本存在一些错误

    所以解决方案将android支持库版本更改为 28.0.0-alpha1