我在content_main中的设计视图始终为空。当我尝试放置按钮或textView时,它会缩小到左上角

时间:2019-07-20 09:10:17

标签: android android-studio design-view

我正在尝试将某些组件放入content_main中。但是每次我放下它时,它都会缩小到左上角。无论我扩展多少,它都不会显示。

enter image description here

我尝试了以下建议:

  1. 重启我的Android Studio
  2. 在styles.xml中为父项添加“基础”
  3. 使缓存/重启无效

这是我的content_main.xml中的代码

<?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"
    android:visibility="gone"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/activity_main">

    <TextView
        android:id="@+id/textView"
        android:layout_width="10dp"
        android:layout_height="10dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:text="TextView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />

    <Button
        android:id="@+id/button5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintBottom_toTopOf="parent"
        app:layout_constraintEnd_toStartOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

没有错误消息。

2 个答案:

答案 0 :(得分:2)

可能是因为ConstraintLayout android:visibility="gone"

答案 1 :(得分:1)

您需要删除此行

android:visibility="gone"

您还需要稍微校正一下按钮的对齐方式

<Button
    android:id="@+id/button5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />