Style.xml:结尾部分不允许包含内容

时间:2018-11-11 19:24:00

标签: android android-studio

我收到此错误:...

错误:结尾部分不允许包含内容。

在Style.xml文件上:......

final CompletionStage<WSResponse> futureResponse = this.playWS.client
        .url(importSource.getDownloadUrl())
        .setMethod(HttpMethod.GET)
        .setRequestTimeout(Duration.ofSeconds(5)) 
        .stream();

Source<WSResponse> source = Source.fromCompletableStage(futureResponse);
source.map(...).filter(...).recover(...).runforeach(..., playWS.materializer)

2 个答案:

答案 0 :(得分:0)

您的应用程序颜色应位于colors.xml内。来自documentation

  

文件位置:

res/values/colors.xml
The filename is arbitrary. The <color> element's name will be used as the resource ID.

答案 1 :(得分:0)

此内容应该是Style.xml中没有的colors.xml文件。请从样式中删除此项目,并将其添加到res目录中的colors.xml位置。

<?xml version="1.0" encoding="UTF-8" ?>
<resources>

    <color name="colorPrimary">#3F51B5</color>
    <color name="colorPrimaryDark">#303F9F</color>
    <color name="colorAccent">#FF4081</color>

    <color name="bottomText">#6b6b6b</color>
    <color name="rippleEffectColor">#f916a463</color>

</resources>