Android Studio未构建完整文件

时间:2018-10-13 10:39:53

标签: android android-studio-3.2

每当我创建新项目时,android studio不会完全构建colors.xml文件。 colors.xml文件为:

library(tidyverse)

df <-
  tribble(
    ~id, ~group, ~value1, ~value2,
    "1.", "a", 10, 1.2,
    "2.", "a", 20, 1.3,
    "3.", "b", 100, 5.1,
    "4.", "b", 200, 5.4,
  )

df %>%
  group_by(group) %>%
  summarise_if(is.numeric, median)

## # A tibble: 2 x 3
##   group value1 value2
##   <chr>  <dbl>  <dbl>
## 1 a         15   1.25
## 2 b        150   5.25

很明显,android studio给出以下错误: 错误:XML文档结构必须在同一实体内开始和结束。

1 个答案:

答案 0 :(得分:0)

您的XML格式不正确。通常,此错误表示开始标记和结束标记的范围有问题。

         <?xml version="1.0" encoding="utf-8"?>
            <set xmlns:android="http://schemas.android.com/apk/res/android">

              <component android:name="AndroidLayouts">
                 <shared>
                   <config />
                 </shared>
             </component>

            </set>