このページには広告が含まれる場合があります。
Android Studioで、レイアウトファイルの「Design」からビューの大きさ(”layout_width” あるいは “layout_height”)を設定する際に、大きさの単位(dp)を忘れてしまうと、再度プロジェクトを開いた際に、「Design」モードが使えなくなってしまうエラーへの対処法です。
こんなエラーとか
Integer types not allowed (at 'layout_width' with value '150')
こんなエラーが出て、、、
'100(数字)' is incompatible with attribute android:layout_・・・
こんな感じになってしまう場合の対処法です。
これは、レイアウトファイルの「Text」モードで単位が抜けてしまっていることによって起こる現象のようですので(こんな感じで)、
<ImageView android:id="@+id/imageView" android:layout_width="150" ← こいつの単位(dp)が抜けちゃってる!! android:layout_height="wrap_content" android:layout_marginTop="16dp" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/image_title" />
単位を入れて、再度プロジェクトを立ち上げてあげると、めでたく「Design」モードが使えるようになります(再度立ち上げないと使えるようになりません)。
<ImageView android:id="@+id/imageView" android:layout_width="150dp" ← 単位(dp)を入れてあげる android:layout_height="wrap_content" android:layout_marginTop="16dp" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/image_title" />
(詳しくは下の動画で解説していますので、よろしければご覧ください)