Hello,

I'm modifying the SeekBar a little bit but I'm having troubles with
the "com.android.internal.R.stylable". In a 2-hour research I found
that the best way to fix it is to do something like the following:


# resources.xml

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android";>
        <declare-styleable name="SeekBar">
                <attr name="android:SeekBar"/>
    </declare-styleable>

    <declare-styleable name="SeekBar_thumb">
                <attr name="android:SeekBar_thumb"/>
    </declare-styleable>

    <declare-styleable name="SeekBar_thumbOffset">
                <attr name="SeekBar_thumbOffset"/>
    </declare-styleable>

        <declare-styleable name="Theme">
                <attr name="android:Theme"/>
    </declare-styleable>

    <declare-styleable name="Theme_disabledAlpha">
                <attr name="android:Theme_disabledAlpha"/>
    </declare-styleable>

</resources>

But I'm getting the following error messages:

[2011-04-08 01:18:47 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar, unable to find attribute android:SeekBar
[2011-04-08 01:18:47 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumb, unable to find attribute android:SeekBar_thumb
[2011-04-08 01:18:47 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumbOffset, unable to find attribute SeekBar_thumbOffset
[2011-04-08 01:18:47 - AdBoxApp] ERROR: In <declare-styleable> Theme,
unable to find attribute android:Theme
[2011-04-08 01:18:47 - AdBoxApp] ERROR: In <declare-styleable>
Theme_disabledAlpha, unable to find attribute
android:Theme_disabledAlpha
[2011-04-08 01:18:48 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar, unable to find attribute android:SeekBar
[2011-04-08 01:18:48 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumb, unable to find attribute android:SeekBar_thumb
[2011-04-08 01:18:48 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumbOffset, unable to find attribute SeekBar_thumbOffset
[2011-04-08 01:18:48 - AdBoxApp] ERROR: In <declare-styleable> Theme,
unable to find attribute android:Theme
[2011-04-08 01:18:48 - AdBoxApp] ERROR: In <declare-styleable>
Theme_disabledAlpha, unable to find attribute
android:Theme_disabledAlpha
[2011-04-08 01:18:49 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar, unable to find attribute android:SeekBar
[2011-04-08 01:18:49 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumb, unable to find attribute android:SeekBar_thumb
[2011-04-08 01:18:49 - AdBoxApp] ERROR: In <declare-styleable>
SeekBar_thumbOffset, unable to find attribute SeekBar_thumbOffset
[2011-04-08 01:18:49 - AdBoxApp] ERROR: In <declare-styleable> Theme,
unable to find attribute android:Theme
[2011-04-08 01:18:49 - AdBoxApp] ERROR: In <declare-styleable>
Theme_disabledAlpha, unable to find attribute
android:Theme_disabledAlpha



How can I discovery the correct XML resource path to these "names"?

Thank you so much!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to