android--由文件名获取文件Id的两种方法

在android中,我们经常使用资源文件的id来代替这个资源,如 R.drawable.*** ,

那怎样通过文件名得到这个资源的Id的,这里介绍两种方法:

一:通过  getIdentifier (String name, String defType, String defPackage)方法。

  这里有两种实现

1.name 用package:type/entry,那么后面两个参数可以为null.

2.name只写文件名,后面两参数分别为文件类型和包路径。


二:通过反射机制:   

给个demo:    drawable文件夹中有一bluetooth.png图片。


package com.shao.acts;

import java.lang.reflect.Field;

import android.app.Activity;
import android.os.Bundle;

public class GetResIdActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        //方式一:
        int resId1 = getResources().getIdentifier("bluetooth", "drawable", "com.shao.acts");
        if(R.drawable.bluetooth==resId1){
        System.out.println("TRUE");
        }
        //方式二:
        int resId2 = getResources().getIdentifier("com.shao.acts:drawable/bluetooth", null, null);
        if(R.drawable.bluetooth==resId2){
           System.out.println("TRUE");
        }
        //方式三:
        int resId3  = getImage("bluetooth");
        if(R.drawable.bluetooth==resId3){
            System.out.println("TRUE");
         }
    }
    public static int getImage(String pic) {
    	  if(pic==null||pic.trim().equals("")){
    	   return R.drawable.icon;
    	  }
    	  Class draw = R.drawable.class;
    	  try {
    	   Field field = draw.getDeclaredField(pic);
    	   return field.getInt(pic);
    	  } catch (SecurityException e) {
    	   return R.drawable.icon;
    	  } catch (NoSuchFieldException e) {
    	   return R.drawable.icon;
    	  } catch (IllegalArgumentException e) {
    	   return R.drawable.icon;
    	  } catch (IllegalAccessException e) {
    	   return R.drawable.icon;
    	  }
    	 }
}

输出都为true.不信可以试试,O(∩_∩)O~

     



  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值