blob: ba83b89eb305626557926eb8b78c05f8bffce29d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef __ANDROID_R_H
#define __ANDROID_R_H
namespace android {
namespace R {
namespace attr {
enum {
background = 0x01010000, // default
foreground = 0x01010001, // default
some_dimen = 0x01010002, // default
another_dimen = 0x01010003, // default
windowNoTitle = 0x01010056, // default
};
}
namespace style {
enum {
Theme_One = 0x01020000, // default
};
}
} // namespace R
} // namespace android
#endif // __ANDROID_R_H
|