在android frameworks 裏添加全局的變量[String]

阅读更多

首先需要在/frameworks/base/core/res/res/values/strings.xml裏定義新增的String:

    phase1:

 

@string/prompt_zipfile_title
@string/prompt_zipfile_message

    phase2:
   

Read file result:
Current image is the newest!

 

 然後需要在/frameworks/base/core/res/res/values/symbols.xml做全局的定義

   


  

使用的方式如下:

.......
AlertDialog sConfirmDialog = new AlertDialog.Builder(getUiContext())
                        .setTitle(mContext.getString(R.string.global_prompt_zipfile_title))
			                        .setMessage(mContext.getString(R.string.global_prompt_zipfile_message))
                        .setPositiveButton(com.android.internal.R.string.yes, new DialogInterface.On
ClickListener() {
......

 

 

你可能感兴趣的:(android,string)