无法找到风格' scrollviewstyle'在当前主题

时间:2017-07-22 14:17:34

标签: android android-layout android-styles android-scrollview

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

  

无法找到风格' scrollviewstyle'在当前主题

这是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>

1 个答案:

答案 0 :(得分:0)

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

  • 刷新布局
  • 从主题下拉菜单中选择主题(请参阅下面的屏幕截图) enter image description here

这是因为Android Studio(出于某种原因)找不到您用于活动的主题。

希望这有帮助