私は最初の Android プロジェクトに取り組んでいます。受信インテントがリモート サーバーから情報を取得するのを待つ Service クラスがあります。私のこのサービスは次のようになります。
public class MyService extends IntentService{
public static final String ACTION_INTENT_01 = "xyz.actionIntent01";
public static final String ACTION_INTENT_02 = "xyz.actionIntent02";
public static final String ACTION_INTENT_03 = "xyz.actionIntent03";
... A lot of constant more...
public static final String ACTION_INTENT_01_EXTRA = "xyz.actionIntent01Extra";
...more and more constants...
public MyService(){
...
}
/*The Rest of The Service*/
}
私の質問は、このクラス内に多くの定数文字列を含めるか、String.xml ファイルでそれらを宣言してgetString(R.string.ACTION_INTENT_03)
??でアクセスする方がよいということです。
ありがとう!