ActionBarSherlock 中的 ListNavigation 从 res 中的 array.xml 中获取值。
Context context = getSupportActionBar().getThemedContext();
ArrayAdapter<CharSequence> list = ArrayAdapter.createFromResource(context, R.array.locations, R.layout.sherlock_spinner_item);
list.setDropDownViewResource(R.layout.sherlock_spinner_dropdown_item);
是否可以使用用户的值作为导航器列表中的文本?即以编程方式将字符串值传递给ArrayAdapter,而不是createFromResource。