我有这个xml文件,我必须将掩码𛈇
应用于名为@color/personal_color
<item >
<shape android:shape="rectangle" >
<corners android:radius="10dip" />
<stroke android:width="1dip" android:color="#706969" />
<gradient android:angle="-90" android:startColor="@color/personal_color𛈇" android:endColor="#BB7e7a7a" />
</shape>
</item>
这个android:startColor="@color/personal_color𛈇"
给了我这个错误error: Error: No resource found that matches the given name (at 'startColor' with value '@color/personal_color𛈇').
如何解决这个问题?