无法将ImageView小部件从调色板拖动到android studio 3.1.3中的画布

时间:2018-07-16 17:41:35

标签: android-studio android-studio-3.0 android-studio-2.3 android-studio-3.1

我一直试图将ImageView小部件从调色板拖到android studio 3.1.3中的设计画布上,每次执行时,它都不会放在画布上。当我将鼠标拖到画布上时,弹出的“资源窗口”与其他窗口小部件(例如videoView,CalendarView,ProgressBar)相反,它们只是将自己放置在TextView下方,并且代码在xml中创建。即使将父布局更改为RelativeLayout,ImageView的行为也相同。有人可以帮我弄清楚我在做什么错吗?

这是我的代码。

<LinearLayout 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:id="@+id/welcomeLinearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

tools:context=".MainActivity">

<TextView
    android:id="@+id/welcomeTextView"
    android:gravity="center"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_gravity="center_horizontal"
    android:layout_weight="1"
    android:text="@string/welcome"
    android:textColor="@color/welcome_text_color"
    android:textSize="@dimen/welcome_textsize"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

</LinearLayout>

0 个答案:

没有答案