Android利用資源名稱獲取其id之getIdentifier()方法
程式碼如下:
activity_main.xml佈局檔案
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="利用getIdentifier()方法獲取資源id" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/imageView"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dip" />
</RelativeLayout>
value下String檔案
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">GetIdentifierDemo</string>
<string name="hello">你好,你找到我了!</string>
</resources>
MainActivity.java檔案
package com.example.getidentifierdemo;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
/**
* 利用getIdentifier()方法獲取資源id
* 方法描述: getIdentifier(String name, String defType,String defPackage)
* 第一個引數:資源的名稱
* 第二個引數:資源的型別(drawable,string)
* 第三個引數:包名,getPackageName()
*
* @author Administrator
*
*/
public class MainActivity extends Activity {
private Context mContext;
private ImageView mImageView;
private TextView mTextView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();
}
private void init() {
mContext = this;
mImageView = (ImageView) findViewById(R.id.imageView);
mTextView = (TextView) findViewById(R.id.textView);
// 獲取圖片資源的ID
int drawableId = mContext.getResources().getIdentifier("apic24195", "drawable", mContext.getPackageName());
mImageView.setImageResource(drawableId);
// 獲取字串資源
int stringId = mContext.getResources().getIdentifier("hello", "string", mContext.getPackageName());
mTextView.setText(stringId);
}
}