为Adapter装载数据的方法

为数据适配器装载数据:

import android.widget.ArrayAdapter;

			String[] choices;
			choices = new String[2];
			choices[0] = getString(R.string.choice_takePhoto);
			choices[1]= getString(R.string.choice_pickPhoto);
			ListAdapter adapter = new ArrayAdapter(dialogContext,android.R.layout.simple_list_item_1,chices);		
其中,dialogContext为定义的Context,通常可设为this;android.R.layout.simple_list_item_1为适配器的布局格式;choices为填充进适配器的数组。


你可能感兴趣的:(Android)