源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Android中引用其他程序的文本资源超简单方法

  • 时间:2022-02-18 10:17 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Android中引用其他程序的文本资源超简单方法
在Android中引用其他程序的文本资源并不是很常见,但是有时候还是很是有需要的,通常引用的多半是系统的程序的文本资源. 下面以一个超简单的例子,来展示以下如何实现.
[u]复制代码[/u] 代码如下:
public void testUseAndroidString() {     Context context = getContext();     Resources res = null;     try {         //I want to use the clear_activities string in Package com.android.settings         res = context.getPackageManager().getResourcesForApplication("com.android.settings");         int resourceId = res.getIdentifier("com.android.settings:string/clear_activities", null, null);         if(0 != resourceId) {             CharSequence s = context.getPackageManager().getText("com.android.settings", resourceId, null);             Log.i(VIEW_LOG_TAG, "resource=" + s);         }     } catch (NameNotFoundException e) {         e.printStackTrace();     } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部