No resource found that matches the given name (at 'thumb' with value '@drawable/

在做android的一个例子SeekBar 拖动条时, <SeekBar android:id="@+id/seek"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:max="100" android:thumb="@drawable/seeker"
android:progress="50"/> 提示Error: No resource found that matches the given name (at 'thumb' with value '@drawable/seeker').这个提示已经表明了在drawable文件中没有找到名叫seeker的图片。将一个图片放到drawable文件中,命名为seeker就行了。

你可能感兴趣的:(android,seekbar)