- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中android.content.res.XModuleResources.getString()
方法的一些代码示例,展示了XModuleResources.getString()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XModuleResources.getString()
方法的具体详情如下:
包路径:android.content.res.XModuleResources
类名称:XModuleResources
方法名:getString
暂无
代码示例来源:origin: marzika/Snapprefs
/**
* Creates a dialog saying the image is too large. Two options are given: continue or quit.
*
* @param activity The activity to be used to create the dialog
* @return The dialog to show
*/
private static AlertDialog createDialog(final Activity activity) {
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(activity);
dialogBuilder.setTitle(mResources.getString(R.string.app_name));
dialogBuilder.setMessage(mResources.getString(R.string.dialog_main));
dialogBuilder.setPositiveButton(mResources.getString(R.string.continue_anyway), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
dialogBuilder.setNegativeButton(mResources.getString(R.string.go_back), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
activity.finish();
}
});
return dialogBuilder.create();
}
}
代码示例来源:origin: suraj0208/WhatsappExtensions
MenuItem callMenuItem = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_call));
callMenuItem.setIcon(android.R.drawable.ic_menu_search);
callMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
menuItem = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_hide));
else
menuItem = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_unhide));
MenuItem unlock;
lock = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_lock));
lock.setIcon(android.R.drawable.ic_menu_search);
lock.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
unlock = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_unlock));
unlock.setIcon(android.R.drawable.ic_menu_search);
unlock.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
MenuItem reminderMenuItem = ((Menu) param.args[0]).add(modRes.getString(R.string.menuitem_reminder));
reminderMenuItem.setIcon(android.R.drawable.ic_menu_search);
reminderMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
代码示例来源:origin: suraj0208/WhatsappExtensions
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
super.afterHookedMethod(param);
Menu menu = (Menu) param.args[0];
File f = new File(Environment.getExternalStorageDirectory() + ExtModule.WALLPAPER_DIR + contactNumber + ".jpg");
if (f.exists() && !f.isDirectory())
menu.getItem(menu.size() - 1).getSubMenu().add(modRes.getString(R.string.menuitem_wallpaper_remove));
else
menu.getItem(menu.size() - 1).getSubMenu().add(modRes.getString(R.string.menuitem_wallpaper_set));
if (isCurrentOpenConversationGroup && enableHighlight)
return;
if (highlightedChats.contains(contactNumber)) {
menu.getItem(menu.size() - 1).getSubMenu().add(modRes.getString(R.string.menuitem_unhighlight));
} else {
menu.getItem(menu.size() - 1).getSubMenu().add(modRes.getString(R.string.menuitem_highlight));
}
menu.getItem(menu.size() - 1).getSubMenu().add(modRes.getString(R.string.stats));
}
});
代码示例来源:origin: suraj0208/WhatsappExtensions
if (title.equals(modRes.getString(R.string.menuitem_lock))) {
lockedContacts.add(contactNumber);
templockedContacts.add(contactNumber);
ExtModule.this.showToast(modRes.getString(R.string.lock_enable_message));
param.setResult(false);
((Activity) param.thisObject).finish();
} else if (title.equals(modRes.getString(R.string.menuitem_unlock))) {
lockedContacts.remove(contactNumber);
templockedContacts.remove(contactNumber);
ExtModule.this.showToast(modRes.getString(R.string.lock_disable_message));
} else if (title.equals(modRes.getString(R.string.menuitem_call)) || (title.equals(modRes.getString(R.string.voice_call_string)) && replaceCallButton)) {
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
AndroidAppHelper.currentApplication().startActivity(callIntent);
} catch (Exception ex) {
showToast(modRes.getString(R.string.call_place_error));
ex.printStackTrace();
} else if (title.equals(modRes.getString(R.string.menuitem_reminder))) {
intent = new Intent();
intent.setComponent(new ComponentName("com.suraj.waext", "com.suraj.waext.ReminderActivity"));
} else if (title.equals(modRes.getString(R.string.menuitem_wallpaper_set))) {
intent = new Intent();
我注意到 Activity 类有两种不同的方法来获取字符串资源。这可以通过使用: getString(int resId):从应用程序包的默认字符串表中返回一个本地化字符串。 getResources
有什么值得注意的区别吗?我说的是一个花费大量时间读取查询结果的程序,并且某些运行(这些是网络点击)花费了 2 分钟以上的时间。如果我可以通过使用整数而不是字段名称来节省几秒钟,我想我可以免费获得一些时
要获取设备 ID,我通常使用以下代码段: String android_id = Settings.System.getString(getContentResolver(), Secure.ANDR
我在文件夹中有一些带有字符串的本地化文件,例如 values values-ru values-es etc. 在每个文件夹中都有一个 strings.xml 文件,其键相同但值不同。 在 Debug
我在 Assets 文件夹中使用不同的文本文件(arabic.txt,english.txt)我想更改设备语言的文件库 值/字符串文件中可以设置文件名吗? public static class Ti
我有一个扩展应用程序的类。我需要从 strings.xml 文件中获取一个字符串。 我正在使用此类来管理全局状态,因此它是通过 list 加载的。 加载时,getString() 生成一个空指针引用。
所以我在strings.xml中有很多字符串,它们的记录格式是: xxxxxxxxxxx xxxxxxxxxxx xxxxxxxxxxx ...... 现在我想一个一个地加载它们,而不必输入所有的字符
我有一个类,我应该在其中将一些字符串(取自 strings.xml)插入到 StringBuffer 中。这将传递给一个 Activity 。问题是我应该使用 getString() 方法,但我不能,
有没有办法以编程方式更改 R.string?因为它会抛出错误。 基本上我想这样做:String parkAdd = getString(R.string.stg_ParkAddress_+id); 因
我遇到了一个只出现在这个语法中的崩溃,在这个语句之后它崩溃了 ats+=getString(R.string.gal_grietineles , grietinele)+"\n";当我使用 ats+=
这是我的 onActivityResult 方法的代码: @Override public void onActivityResult(int requestCode, int resultCode,
我是android新手,我正在编写一个应用程序来根据纬度和经度获取地址。在 FetchAddressIntentService 类中,我在 getString() 函数中收到一个错误,指出将字符串添加
我遇到的问题是 getString() 返回的不是 id 的字符串,而是另一个字符串。但首先这是我的代码: public public class ShopFragment extends Fragm
在我的应用程序的应用程序类的 onCreate 中,我有这段代码 Locale current = getResources().getConfiguration().locale;
我想知道 getString()。我可以看到执行 getString(R.string.some_text) 是有效的。 getResources().getString(R.string.conne
基于 Android 文档: https://developer.android.com/training/basics/supporting-devices/languages https://de
我使用的是 Delphi 2009。 这对我来说适用于所有情况,除了一种情况: var BOMLength: integer; Buffer: TBytes; Encoding: TEnc
Dictionary Fields = new Dictionary();for (int i = 0; i < reader.FieldCount; i++){ Fields.Add(rea
我有一个名为 spiliaBeach 的 Place Object 实例,它接受您在下面看到的参数: public PlaceObject spiliaBeach = new PlaceObject(
我有: Toast.makeText(NewChatActivity.this, getString(R.string.invitation_sent_prompt, contact), Toast.
我是一名优秀的程序员,十分优秀!