tags:

views:

228

answers:

2

Hello there i'm trying to write a layout similar to the timepicker widget layout.

So i decided to use the android framework layouts but i can't use them It seems that if i write android.R.drawable.timepicker_input or other timepicker related drawables i get them this Eclipse error:

android.R.drawable.timepicker_up_btn cannot be resolved

So i tried to import all the pngs and xml from the android source but eclipse says there is an error in the manifest regarding the icon.

Ideas?

A: 

Not all of the internal android resources are available to use. If android.R.drawable.timepicker_up_btn gives you that error then it is probably one of the resources that is internal.

BrennaSoft
Solution ?hhhhhhhhhhh
Andrea
A: 

This resource is not available for development.

Solution: get the file from the source code (http://source.android.com/) copy it inside your project and use it

Daniel Benedykt