如何将十六进制掩码应用于xml res / drawable文件中的xml变量?

时间:2014-04-28 18:52:03

标签: android android-xml android-resources

我有这个xml文件,我必须将掩码&#111111应用于名为@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&#111111" android:endColor="#BB7e7a7a" />            
     </shape>
 </item>

这个android:startColor="@color/personal_color&#111111"给了我这个错误error: Error: No resource found that matches the given name (at 'startColor' with value '@color/personal_color𛈇').

如何解决这个问题?

0 个答案:

没有答案