无论如何可以告诉我为什么要跳过以下if语句? 我想检查我的mAlphabetCode是否包含0-9字面值,而不是0到9。
// check if alphabet code is numeric
if (mAlphabetCode.equals("0-9")){
mAlphabetCode = "-";
}
以下是整个代码:
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
if (parent.getId() == R.id.lv_gl_content) {
// store data to be pass
Intent mIntent = new Intent(this, AchList.class);
mIntent.putExtra("mPageUrl", mGameList.get(position).getItemPageUrl());
mIntent.putExtra("mGameTitle", mGameList.get(position).getTitle());
// start activity and page animation
startActivity(mIntent);
mPageTrans.slideIn();
} else if (parent.getId() == R.id.lv_alphabet_content) {
// get alphabet code
String mAlphabetCode = parent.getAdapter().getItem(position).toString().toLowerCase();
// check if alphabet code is numeric
if (mAlphabetCode.equals("0-9")){
mAlphabetCode = "-";
}
// build page url
mGameListUrl = mGameListUrl.substring(0, (mGameListUrl.length() - 2) ) + mAlphabetCode + "/";
mAlphabetMenu.setItemChecked(position, true);
// close browsing menu
mSlidingPane.closePane();
// make network request
mStringRequest = new StringRequest(Request.Method.GET, mGameListUrl, onSuccess(), onError());
mRequestQueue.add(mStringRequest);
}
}
这是调试器在命中if语句之前所说的mAlphabetCode所包含的内容:
我的错误发生在我的strings.xml文件中:
<!-- strings of arrays -->
<string-array name="slide_menu_alphabet">
<item>0–9</item>
我已经将项目从0-9改为0&amp;#8211; 9(间距如此数字显示),因为AndroidStudio IDE受到了影响,感谢@ user1873880和David Cesarino,我改为0&amp;#45; 9(间距如此数字显示)现在它的效果很好。
感谢您的帮助。
答案 0 :(得分:6)
问题是代码中的' - '字符实际上是整数45,而在调试器中它是8211,这意味着它是不同的字符。您可以通过某些日志对此进行验证,只需尝试查看此值(int) '-'
。