我正在开发俄语版的Android应用程序。
这是我的AlertMessage
课程,其中只有一个方法和一个俄语单词:
public class AlertMessage {
public static boolean isYes (Context context, String header, String message){
final boolean[] isYes = {false};
new AlertDialog.Builder(context)
.setTitle(header)
.setMessage(message)
.setNegativeButton(android.R.string.no, null)
.setPositiveButton("Да",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
isYes[0] = true;
}
}).create().show();
return isYes[0];
}
}
我从MainActivity
:
@Override
public void onBackPressed(){
if(AlertMessage.isYes(this,"Выход","Вы уверены, что хотите выйти из аккаунта?"))
{
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
App.super.onBackPressed();
Log.i("App", "Exit");
finish();
}
}
除AlertMessage
课程中的一个俄语单词外,一切正常。
这是不可读的。我该如何解决?
答案 0 :(得分:6)
您可以使用getString(R.string.error_msg)
等资源中的字符串来代替硬编码字符串来修复它。