<item
android:id="@+id/menu_selectDate"
android:orderInCategory="100"
android:showAsAction="ifRoom|withText"
android:title="@string/date"/>
我需要这个标题是可变的所选日期
只需尝试以下代码即可从您的项目资源中获取您的字符串:
String date= getApplicationContext().getResources().getString(R.string.date);
尝试这个,
如果它是字符串数组,则使用,
String[] some_array = getResources().getStringArray(R.array.your_string_array);
要不然
String date= getApplicationContext().getResources().getString(R.string.date);
在布局中将字符串名称字段留空。然后在您的活动中写下以下内容:
menu_selectDate.setText(YourDate);