找不到以下类:android.support.constraint.RelativeLayout

时间:2017-11-26 02:12:25

标签: android android-layout

我正在尝试将XML中的ConstraintLayout更改为RelativeLayout。每次我这样做,都会收到Missing Classes错误:

The following classes could not be found: android.support.constraint.RelativeLayout

我错过了什么?

1 个答案:

答案 0 :(得分:1)

RelativeLayout不在该包内,您应该使用:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp" >

或者如果您要在班级内导入:

import android.widget.RelativeLayout;