问题描述
我有一个ListView的地方我填补它通过字符串tutorialTitle1 = getResources()的getString(R.string.tutorial1_title);
,但为宗旨,我的应用程序的功能我没有选择,只能使用一个字符串数组
I have a ListView where I'm filling it in through String tutorialTitle1 = getResources().getString(R.string.tutorial1_title);
, but for the purpose and functionality of my app I have no choice but to use a String-Array
我从来没有与字符串数组
工作,我想一些帮助来实现我的ListView每一个项目。目前,我正在做这样
I've never worked with the String-Array
and I'd like some help to implement every item in my ListView. At the moment I'm doing it this way
public class tutorialActivity extends Activity{
String[] values;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tutorial);
registerClickCallBack();
ListView listView = (ListView) findViewById(R.id.tutorialList);
String tutorialTitle1 = getResources().getString(R.string.tutorial1_title);
String tutorialTitle2 = getResources().getString(R.string.tutorial2_title);
String tutorialTitle3 = getResources().getString(R.string.tutorial3_title);
String tutorialTitle4 = getResources().getString(R.string.tutorial4_title);
String tutorialTitle5 = getResources().getString(R.string.tutorial5_title);
String tutorialTitle6 = getResources().getString(R.string.tutorial6_title);
String tutorialTitle7 = getResources().getString(R.string.tutorial7_title);
String tutorialTitle8 = getResources().getString(R.string.tutorial8_title);
String tutorialTitle9 = getResources().getString(R.string.tutorial9_title);
String tutorialTitle10 = getResources().getString(R.string.tutorial10_title);
String tutorialTitle11 = getResources().getString(R.string.tutorial11_title);
String tutorialTitle12 = getResources().getString(R.string.tutorial12_title);
String tutorialTitle13 = getResources().getString(R.string.tutorial13_title);
String tutorialTitle14 = getResources().getString(R.string.tutorial14_title);
values= new String[] { tutorialTitle1, tutorialTitle2, tutorialTitle3, tutorialTitle4, tutorialTitle5, tutorialTitle6, tutorialTitle7, tutorialTitle8, tutorialTitle9, tutorialTitle10, tutorialTitle11, tutorialTitle12, tutorialTitle13, tutorialTitle14};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, values);
listView.setAdapter(adapter);
}
private void registerClickCallBack() {
ListView list = (ListView) findViewById(R.id.tutorialList);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View viewClicked,int position, long id) {
Intent i = new Intent(viewClicked.getContext(), tutorialContentActivity.class);
i.putExtra("tutorialNumber", position);
startActivity(i);
}
});
}
}
但现在 R.string.tutorial1_title
不存在了,因为我已经把它像
But now R.string.tutorial1_title
doesn't exist anymore because I've put it like
<string-array name="tutorialTitle">
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
<item>Tutorial Content</item>
</string-array>
所以基本上我怎么能填充我的列表视图与所有我在项目我的&LT;字符串数组名=tutorialTitle&GT;
推荐答案
呼叫 getResources()。getStringArray(R.array.tutorialTitle)
来检索的String []
与字符串数组
资源关联。
Call getResources().getStringArray(R.array.tutorialTitle)
to retrieve the String[]
associated with your string-array
resource.
这篇关于从字符串数组填充一个ListView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!