Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Stringリフレクションまたはそれを生成することによって、ビュー参照の名前を取得する方法はありますか?
String
例:
public static final int main = 0x7f030000;
私は持っています0x7f030000、私は欲しいです"main";
0x7f030000
"main"
Field[] fields = R.layout.class.getDeclaredFields(); for(Field f : fields) { String fieldName = f.getName(); int fieldValue = (Integer) f.get(new Integer(0)); // ... }