android - 更新 gradle 依赖项后呈现问题

标签 android gradle dependencies rendering android-styles

我刚刚更新了 build.gradle(Module: app) 依赖项,之后在 Android Studio 上出现了渲染问题。出了什么问题,在更新依赖项之前,everythink 工作正常

现在是这样的:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:design:23.0.0'
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.android.support:support-v4:23.0.0'

    compile 'com.android.support:recyclerview-v7:23.0.0'
}

my_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/myLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

        <android.support.v4.view.ViewPager
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/white"
            android:layout_marginTop="4dp"
            android:paddingTop="0dp"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:id="@+id/myPager"/>

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appBar"
            android:layout_width="match_parent"
            android:layout_height="120dp"
            android:fitsSystemWindows="true">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                android:elevation="4dp"
                app:contentScrim="?attr/colorPrimary"
                app:expandedTitleMarginBottom="70dp"
                app:expandedTitleMarginEnd="64dp"
                app:expandedTitleMarginStart="48dp"
                app:statusBarScrim="?attr/colorPrimary"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <android.support.v7.widget.Toolbar
                    android:id="@+id/appToolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    app:layout_collapseMode="pin" />

                <android.support.design.widget.TabLayout
                    style="@style/AppTheme.TabLayout"
                    android:id="@+id/appTabs"
                    android:scrollbars="horizontal"
                    android:layout_gravity="bottom"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    app:layout_scrollFlags="scroll|enterAlways" />
            </android.support.design.widget.CollapsingToolbarLayout>
        </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

出现这个错误:

Rendering Problems Missing styles. Is the correct theme chosen for this layout?      

Use the Theme combo box above the layout to choose a different layout, or fix the theme style references.  

The following classes could not be instantiated:
    - android.support.design.widget.CollapsingToolbarLayout (Open Class, Show Exception, Clear Cache)

Tip: Use View.isInEditMode() in your custom views to skip code or show sample data when shown in the IDE  

Exception Details 
android.content.res.Resources$NotFoundException   
    at
com.android.layoutlib.bridge.android.BridgeContext.obtainStyledAttributes(BridgeContext.java:620)   
    at
com.android.layoutlib.bridge.android.BridgeContext.obtainStyledAttributes(BridgeContext.java:108) 

Failed to find style with id 0x7fff00e4 in current theme (3 similar errors not shown)

最佳答案

单击“将项目与 Gradle 文件同步”选项:

工具 -> Android -> 将项目与 Gradle 文件同步

如果失败,请尝试运行“重建项目”:

构建 -> 重建项目

关于android - 更新 gradle 依赖项后呈现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32208716/

相关文章:

android - 从 fragment 对话框中获取数据 - 最佳实践?

android - 运行 Flutter 身份验证时出现黑屏

android - 找不到 com.android.tools.build :gradle:6. 4.1

android - 如何将托管在 github 上的项目添加到 android studio gradle 依赖项? Pom.xml 可用

android - ListView 选中位置总是重置

Android:解析 JSON 日期

android - 在Android Studio中,我收到一条错误消息,指出 “Packages unavailable”,并且我需要的软件包不可用

ios - 如何管理包含重复依赖项的依赖树? (X代码,iOS)

java - 为什么 gradle 每次都与远程仓库通信?

java - Maven - ClassNotFoundException : org. apache.commons.lang.StringUtils