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.
如何在 IDE 上获取 Android 的常量,例如View.VISIBLE = 0; 我有以下方法调用:input2.setInputType( *int* ); 如何获取此方法的所有可能常量?我正在使用 Netbeans IDE。所以我会知道要使用哪些常量。
View.VISIBLE = 0;
input2.setInputType( *int* );
谢谢你!