Ok, I'm trying to create my own view called CheckedRelativeLayout .
The goal is the same as CheckedTextView , to use it in the list of items you want to select, or in Spinner .
Now everything works fine, I expanded RelativeLayout and implemented the Checkable interface.
However, I'm stuck with a pretty simple problem: Where can I find Drawable , what CheckedTextView and RadioButton use?
I looked at the source code of both, and they seem to be using com.android.internal.R . Well ... this is an internal affair. Therefore, I cannot access it.
Any way to get these drawables or solve the problem somehow?
android radio-button drawable
Peterdk
source share