0

Recently i started android development,when i looked the R.java file it showed system generated codes with some numbers.

What do these numbers signify in R.java(Eclipse) 0x7f040001 ?

Below is an example :

 public static final int hello_world=0x7f040001;

Thanks

Tharif
  • 13,794
  • 9
  • 55
  • 77
  • see also: http://developer.android.com/guide/topics/resources/index.html –  May 25 '15 at 09:00

1 Answers1

0

This is hexadecimal value Which android run time use to refer the resource.

Durgesh
  • 291
  • 2
  • 19