Populate a Listview from a String-Array

后端 未结 1 1797
野的像风
野的像风 2021-01-15 09:47

I have a ListView where I\'m filling it in through String tutorialTitle1 = getResources().getString(R.string.tutorial1_title);, but for the purpose and function

相关标签:
1条回答
  • 2021-01-15 10:49

    Call getResources().getStringArray(R.array.tutorialTitle) to retrieve the String[] associated with your string-array resource.

    0 讨论(0)
提交回复
热议问题