1
XMLでConstraintLayout
をRelativeLayout
に変更しようとしています。私がするたびに、Missing Classesエラーが表示されます:次のクラスが見つかりませんでした:android.support.constraint.RelativeLayout
私は何が欠けていますか? RelativeLayoutは、そのパッケージの内側ではありません
XMLでConstraintLayout
をRelativeLayout
に変更しようとしています。私がするたびに、Missing Classesエラーが表示されます:次のクラスが見つかりませんでした:android.support.constraint.RelativeLayout
私は何が欠けていますか? 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;
天才!それに気付かなかった。 – waseefakhtar