我需要将描述保存在ListView上选择的项目的字符串中。
我该怎么做?
答案 0 :(得分:1)
如果你有简单的列表项,你必须在Activity类中声明String变量并注册itemclick事件以监听项目点击。
我是这样做的:
class YourActivity extends Activity{
String my_selected_item_text=null;
@override
protected void onCreate(Bundle savedInstanceState)
{
//your stuffs here
yourlistview.setOnItemClickListener(
new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position,
long arg3) {
my_selected_item_text=(String)yourlistview.getItemAtPosition(position);
//my_selected_item_text contains description of the String displayed in your ListView. now you can save that description anywhere you want....
});
}
}
答案 1 :(得分:0)
我的第一个想法是,您可以在listview中使用活动的字符串成员变量