3
私はいつもこの奇妙な警告を受け取ります。私はこの振る舞いを解決し、それを無視したくありません。ResourceType Skip Entry
LogCat:
04-25 18:12:32.145: W/ResourceType(459): Skipping entry 0x7f020001 in package table 0 because it is not complex!
私は私のR.javaクラスに見えた:
public static final int custom_button=0x7f020001;
その後、私はのstyles.xmlに見えた:
<item name="android:buttonStyle">@drawable/custom_button</item>
Custon_Button:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="#a276eb" />
<stroke
android:width="1dp"
android:color="#6a3ab2" />
<corners
android:radius="3dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
</shape>
</item>
<item>
<shape>
<gradient
android:startColor="#bf27c3"
android:endColor="#6a3ab2"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#6a3ab2" />
<corners
android:radius="4dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
</shape>
</item>
</selector>
私はApplideのGreendroidも使用しています。
私はボタンの属性style="@drawable\my_button"
を設定すると、私は同じエラーを持っている
[ResourceType(パッケージ表の項目をスキップする)]の可能な複製](http://stackoverflow.com/questions/4555721/resourcetype-skipping-entry-in-package-table-problem) – noob