2

我正在尝试将 Android Studio 3.0.1 更新到 3.1,但在下载及其启动补丁后,但它在下面显示错误。 将 Android Studio 更新到 3.1 时出错

这是我的simple.xml.ftl文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
<#if hasAppBar && appBarLayoutName??>
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/${appBarLayoutName}"
</#if>
    tools:context="${packageName}.${activityClass}">

<#if isNewProject!false>
    <TextView
<#if includeCppSupport!false>
        android:id="@+id/sample_text"
</#if>
        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" />

</#if>
</android.support.constraint.ConstraintLayout>

提前致谢。

4

1 回答 1

0

我今天尝试从 3.1 升级到 3.1.1 时遇到了这个问题。

取消修补后(第一次尝试),我开始进行新的升级(从帮助 --> 检查更新)。第二次,升级成功。

于 2018-04-10T14:09:01.903 回答