[android-developers] Re: string-array resource into a string array

2009-03-31 Thread deepdr...@googlemail.com
private CharSequence[] strings; Resources res = getResources(); strings = res.getTextArray(R.array.secondlines); res/values/array.xml : ?xml version=1.0 encoding=utf-8? resources string-array name=secondlines item.../item item.../item ... /string-array

[android-developers] Re: string-array resource into a string array

2009-03-31 Thread Brad Fuller
ah thanks for the class! On Tue, Mar 31, 2009 at 11:42 AM, deepdr...@googlemail.com deepdr...@googlemail.com wrote: private CharSequence[] strings; Resources res = getResources(); strings = res.getTextArray(R.array.secondlines); res/values/array.xml : ?xml version=1.0 encoding=utf-8?