- strings.xml 경우
strings.xml 에서 연속적인 ID 또는 일정한 패턴 이름 불러와서 텍스트 뷰에 나타낼 때, 일일이 쓰지 않고 한 문장으로 뒷자리 숫자만 바꿔서 불러올수 있다.
예를 들어, WeatherDescr_1, WeatherDescr_2, WeatherDescr_3 등등 연속적이거나 특정 값을 가질 경우
int id= getResources().getIdentifier("가변적 변수"+nummer, "string", getPackageName()(패키지 이름));
- TextView ID 경우
int tempId = getResources().getIdentifier("temp" + i, "id", getPackageName());
forecast_temp = (TextView) findViewById(tempId);
activity_main.xml
<TextView android:id="@+id/temp0" />
<TextView android:id="@+id/temp1" />
불라부라..
Parameters
name | The name of the desired resource. |
---|---|
defType | Optional default resource type to find, if "type/" is not included in the name. Can be null to require an explicit type. |
defPackage | Optional default package to find, if "package:" is not included in the name. Can be null to require an explicit package. |
Returns
- int The associated resource identifier. Returns 0 if no such resource was found. (0 is not a valid resource ID.)
Activity_main.java
int nummer=0; int id = getResources().getIdentifier("WeatherDescr_"+nummer, "string", "com.sample.muster"); textview.setText(id);
strings.xml
<resources>
<!-- Weather condition Icon list -->
<string name="WeatherDescr_1">맑음</string>
<string name="WeatherDescr_2">대체로 맑음</string>
<string name="WeatherDescr_3">대체로 흐림</string>
<string name="WeatherDescr_4">흐림</string>
</resources>