1
<item
    android:id="@+id/menu_selectDate"
    android:orderInCategory="100"
    android:showAsAction="ifRoom|withText"
    android:title="@string/date"/>   

我需要这个标题是可变的所选日期

4

4 回答 4

1

只需尝试以下代码即可从您的项目资源中获取您的字符串:

String date= getApplicationContext().getResources().getString(R.string.date);
于 2013-07-02T08:29:06.693 回答
0

试试这个方法

String res_date = Context.getResources().getString (R.string.date)

请参阅此链接的 android 开发人员指南

于 2013-07-02T08:33:32.710 回答
0

尝试这个,

如果它是字符串数组,则使用,

String[] some_array = getResources().getStringArray(R.array.your_string_array);

要不然

String date= getApplicationContext().getResources().getString(R.string.date);
于 2013-07-02T08:32:50.103 回答
0

在布局中将字符串名称字段留空。然后在您的活动中写下以下内容:

menu_selectDate.setText(YourDate);
于 2013-07-09T06:16:55.243 回答