我的工作我的第一款Android项目。 我有一个等待接收意图检索来自远程服务器的一些信息服务类。 我的这个服务看起来是这样的:
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)
谢谢!