在我的integer.xml
我有
<integer name="minUNameLen">6</integer>
在我的代码中,我是:
if (uName.trim().length() < R.integer.minUNameLen) {
Toast.makeText(
Splash.this.getApplicationContext(),
"Should be Min "+R.integer.minUNameLen+" characters long",Toast.LENGTH_LONG).show();
但是我没有返回,而是在我的代码中6
得到了一个奇怪的数字。2131165….
谁能告诉这里有什么问题?
Resources.getInteger(R.integer.minUNameLen)
从这里做给我Cannot make a static reference to the non-static method getInteger(int) from the type Resources