约束布局在android studio中不可见

时间:2018-08-13 00:45:07

标签: android android-layout android-studio

我的问题是我在android studio中创建了一个应用,尽管它的文本对我可见,但它的.xml文件(设计)不可见,请提供解决方案

这是它的外观:

here is how it looks

我的文本文件(.xml)

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.52" />

<EditText
    android:id="@+id/editText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:ems="10"
    android:inputType="numberDecimal"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="148dp"
    tools:layout_editor_absoluteY="137dp" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="0dp"
    tools:layout_editor_absoluteY="0dp" />

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp" />

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TextView"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="217dp"
    tools:layout_editor_absoluteY="67dp" />

////请为此提供解决方案

4 个答案:

答案 0 :(得分:1)

我认为解决您问题的方法只是将样式主题从

更改为
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

更改为

    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.NoActionBar">

答案 1 :(得分:0)

enter image description here

尝试更改您的API Version in Editor

编辑

尝试syncing project

enter image description here

答案 2 :(得分:0)

尝试使无效并重新启动。

File->Invalidate and Restart

答案 3 :(得分:0)

确保在build.gradle(Module:app)文件中添加了以下依赖项。

 implementation 'com.android.support.constraint:constraint-layout:1.0.2'