编译我的代码时出错

时间:2015-11-09 06:42:06

标签: android android-drawable

我正在使用Android Studio。我在某些代码行中出现错误 Error Code 那么我该如何解决呢?

我在项目中使用的我的xml文件:

roundrec:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="10dip"  android:color="#FFFFFF" />
<corners android:radius="9dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />

3 个答案:

答案 0 :(得分:1)

像这样使用

android:background="@drawable/roundrect"

//可绘制文件的样本。

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

    <gradient
        android:angle="270" 
        android:startColor="#FBFBFC"
        android:endColor="#E7E9EC">
    </gradient>

    <corners
        android:bottomLeftRadius="2dip"
        android:bottomRightRadius="2dip"
        android:topLeftRadius="2dip"
        android:topRightRadius="2dip" />

    <stroke
        android:width="1dp"
        android:color="#BCC1C8" />

</shape>

答案 1 :(得分:0)

将正确的图像放在可绘制的文件夹中。

答案 2 :(得分:-1)

将图片放入耐用文件夹中。给图像圆整 android:background**="@drawable/roundrect"**