Hello world和准则未显示在Android Studio的蓝图中

时间:2018-06-22 22:16:44

标签: javascript android android-studio-3.0 blueprint

我正在尝试按照本教程(https://developer.android.com/training/basics/firstapp/building-ui)来构建基本应用。我很确定自己已经正确地遵循了所有说明,但是进入构建简单用户界面的图3之后,我的蓝图只是一个实心的蓝色矩形,与本教程中的图3看起来不一样。

代码如下:

<?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" />

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

当我四处寻找解决这个问题的更好方法时,我正在给这个S.O悬吊。解决方案:https://stackoverflow.com/a/47611939/1437920对我有用。

不幸的是,预先构建的“ Hello World”示例并不适合您,这可能令人沮丧。