leb*_*755 31

你的build.gradle文件是否包含以下行?

compile 'com.android.support:design:22.2.0'
Run Code Online (Sandbox Code Playgroud)


ton*_*gil 7

您必须包含支持库(如下所示),但这有时是不够的.

compile ("com.android.support:support-v4:23.3.0")
compile ("com.android.support:appcompat-v7:23.3.0")
compile ("com.android.support:support-annotations:23.3.0")
compile ("com.android.support:recyclerview-v7:23.3.0")
compile ("com.android.support:design:23.3.0")
Run Code Online (Sandbox Code Playgroud)

在设计视图中检查您的布局,然后单击 Show Exception

布局设计视图

如果您遇到以下问题,此答案将有所帮助:

您需要将Theme.AppCompat主题(或后代)与设计库一起使用.

在您的清单文件中,包含在您的申请声明中

android:theme="@style/Theme.AppCompat"
Run Code Online (Sandbox Code Playgroud)

重建和你的问题应该解决.