下のリンクとして重複することがあります。私が質問したい特定の質問や、より速い答えを得るためには、私の質問の答えを見てください。それ以外の場合は、次のリンクに移動します。AlertDialogのテキストのアンドロイドで文字列リソースにアクセスする方法
===================================== ===================== 私の質問:
私はこれを求めています可能性のある重複はあるが質問は私のために働かなかった。
私はAlertDialogに
のstrings.xml
にアクセスしようとしていますが、私はそれを作るように見えることはできません。私は、以下の次のコードで
.setTitle(@文字列/ AlertTitle)
を言っているが、それは働いていたとエラーが出ましたしませんでした。 AlertDialogから文字列を取得する方法はありますか、それとも不可能ですか?
以下のコード。
これはAlertMainActivity.java
AlertDialog dialog = new AlertDialog.Builder(this)
.setTitle("Add a New Task") //AlertTitle
.setMessage("What do you want to do next?") //AlertMessage
.setView(taskEditText)
.setPositiveButton("Add", new DialogInterface.OnClickListener() //Add {
...
.setNegativeButton("Cancel", null) //Cancel
...
}
とのstrings.xml
<string name="AlertTitle">Add a New Task</string>
<string name="AlertMessage">What do you want to do next?</string>
<string name="Add">Add</string>
<string name="Cancel">Cancel</string>
感謝です!
感謝を。ほんとうにありがとう。 –