What is the meaning of $ #3307
Answered
by
iBotPeaches
RealYukiSan
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
iBotPeaches
Sep 1, 2023
Replies: 1 comment 1 reply
-
They normally denote a child/inner class. I can't see the context/file to be sure, but thats generally the reason. Its easier to see this with public final class R {
public static final class attr {
}
public static final class drawable {
public static final int ic_launcher=0x7f020000;
}
// ...
}
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
iBotPeaches
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They normally denote a child/inner class. I can't see the context/file to be sure, but thats generally the reason.
Its easier to see this with
R.java