実現したいこと
Windows10でAndroidStudio3.6.3を使用しています.
AndroidStudioでPaletteのオブジェクトをDnDすると,下記のエラーが出ます.
実行すると,エラー文通りオブジェクトが(0, 0)の場所に移動されます.
原因は,配置する場所を宣言する
android:layout_marginStart
android:layout_marginLeft
android:layout_marginTop
が存在しないからだということは理解しています.
どうにかして,PaletteのオブジェクトをDnDするだけで,layout_marginも自動的に設定できないでしょうか?
エラー文
This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints The layout editor allows you to place widgets anywhere on the canvas, and it records the current position with designtime attributes (such as layout_editor_absoluteX). These attributes are not applied at runtime, so if you push your layout on a device, the widgets may appear in a different location than shown in the editor. To fix this, make sure a widget has both horizontal and vertical constraints by dragging from the edge connections. Issue id: MissingConstraints
回答1件
あなたの回答
tips
プレビュー