我正在使用最新版本的android studio(3.1.4),以及最新的SDK版本(28)。
布局未在“设计”选项卡中呈现,我使用的是协调器布局。
styles.xml:
<resources>
<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>
</resources>
布局代码:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".FireBaseInterfaseActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_notas"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_plus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_add" />
</android.support.design.widget.CoordinatorLayout>
设计TAB图片:
设计TAB图像
如何解决这个问题?
答案 0 :(得分:1)
尝试将您的targetSdkVersion更改为27(文件->项目结构->应用程序->风味)
并检查您的build.gradle(Module:app)文件是否存在此依赖性:
implementation 'com.android.support:appcompat-v7:27.1.1'
如果您已经具有此依赖关系,但仍无法正常工作,请尝试添加此依赖关系:
implementation 'com.android.support:design:27.1.1'
希望对您有所帮助:)