在当前主题中找不到样式 'scrollviewstyle'

Failed to find style 'scrollviewstyle' in current theme

我正在创建一个布局,其中 ScrollView 是根元素,但我在布局设计选项卡中收到此错误

failed to find style 'scrollviewstyle' in current theme

这是xml文件-

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.android.myapp.MainActivity">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            ...
            ...
            ...
        </RelativeLayout>
</ScrollView>

由于缺乏上下文,我不太确定你的问题到底是什么,但对我来说效果很好的一种方法是:

  • 刷新布局
  • Select 主题下拉菜单中的主题(请参阅下面的屏幕截图)

这是因为 Android Studio(出于某种原因)无法找到您用于 activity 的主题。

希望对您有所帮助