我正在尝试将XML中的ConstraintLayout
更改为RelativeLayout
。每次我这样做,都会收到Missing Classes错误:
The following classes could not be found: android.support.constraint.RelativeLayout
我错过了什么?
答案 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;