在新的可绘制xml文件中未在Android Studio中着色的XML关键字

时间:2017-06-23 22:36:13

标签: android xml drawable keyword

enter image description here

我正在Android Studio中制作一个非常基本的测试应用。我正在为按下按钮事件创建一个xml文件,但由于某种原因,它没有突出显示任何关键字。我已经更新了android studio。我对如何解决这个问题感到茫然,因为这对我来说是一个新的过程。

当我尝试为bt_pressed XML定义这些属性时,灯泡给我的消息是“在布局文件中找到意外的文本”。

3 个答案:

答案 0 :(得分:0)

确保您的属性在标记中正确嵌套。像这样:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/some_color" />
</shape>

(提示:查看您提供的代码段中的>字符)

答案 1 :(得分:0)

错误放置&#34;&gt;&#34;在第2行。

答案 2 :(得分:0)

我最近为一个项目制作了下面的矩形,它工作得很好。将其嵌入您的第一个形状标记之间。

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <shape android:shape="rectangle">
        <corners android:radius="3dip" />
        <solid android:color="@color/colorTwo" />
    </shape>
</shape>

或者,不要嵌套任何东西并将开口形状标签更改为:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">