Android Studioでのアプリ制作を勉強しています。
ConstantLayout内に置いたTextViewについて、画像右にあるView Inspectorでmarginを変更しようとすると、勝手に元の数字に戻ってしまいます。
上下方向については数値変更するとちゃんと反映されるのですが、左右方向についてだけは数値を変更してもすぐに0dpに戻ってしまいます。
どのようにすれば横方向のmarginを変更できるでしょうか。
以下layoutのコードです。
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/textView" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="16dp" android:layout_marginBottom="696dp" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
コンボボックスから0以外の数値を選択しても、勝手に0に戻ってしまうという意味ですか?手元では再現できませんが・・・。Android Studioのバージョンは最新(4.1.1)でしょうか?
>コンボボックスから0以外の数値を選択しても、勝手に0に戻ってしまうという意味ですか?
そういう感じです。一瞬は見た目が反映されるのですがすぐに見た目も数値も元に(0に)戻ります。
>Android Studioのバージョンは最新(4.1.1)でしょうか?
はい。
Windows版とLinux版の両方のAndroid Studio 4.1.1で試しても再現できないのでどうにもわからないのですが、本来の動作では左側のマージンを8dpに設定するとXMLのTextViewの属性に
android:layout_marginLeft="8dp"
という行が追加されます。これを手動で追加してDesignに戻っても、やはり勝手に0dpに戻ってしまいますか?
回答1件
あなたの回答
tips
プレビュー