一、获取android工程里面的各种资源的id; 1.1 string型 比如下面: << string name=”OK”>> 客户端请求成功 << / string>> //string资源中 名称为OK的 id 获取方式 int strId = getResources().getIdentifier(OK, string, getPackageName()); 1.2 color型 比如下面: << color name=”colorPrimary”>>#3F51B5 << /color>> //color资源中 id 获取 int c