(int id)
| 465 | } |
| 466 | |
| 467 | public String loadResourceUtf8(int id) { |
| 468 | try { |
| 469 | InputStream is = this.mActivity.getResources().openRawResource(id); |
| 470 | return loadResourceUtf8(is); |
| 471 | } catch (Exception e) { |
| 472 | log.e("cannot load resource " + id); |
| 473 | return null; |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | public String loadResourceUtf8(InputStream is) { |
| 478 | try { |
no test coverage detected