首页 > 代码库 > android Resources 类的使用

android Resources 类的使用

使用 R.<resource_type>.<resource_name> 获取的是资源的一个 id (int 类型), 但有时候我们需要获取资源本身,这时候我们可以通过 Resources 类来完成。

        // 使用 Activity 的 getResources() 来获取 Resources 对象        Resources res = getResources();        // 获取字符串资源        String mainTitle = res.getText(R.string.main_title);        // 获取 Drawable 资源        Drawable logo = res.getDrawable(R.drawable.logo);        // 获取数组资源        int[] arr = res.getIntArray(R.array.books);    

  

 

android Resources 类的使用