我正在开发一个应用程序,我以编程方式创建一些标签。我为每个标签添加了上下文菜单,因此当用户点击任何标签时,他都可以将其删除。
我使用以下代码创建标签并注册上下文菜单。
private void drawLabels(HashMap<String, String> contact, int position)
{
FlowLayout flowLayout = (FlowLayout)findViewById(R.id.recipients);
TextView contactLabel = (TextView)getLayoutInflater().inflate(R.layout.contactlabeltemplate, null);
contactLabel.setText(contact.get("name"));
contactLabel.setTag(R.id.number,String.valueOf( contact.get("number")));
contactLabel.setTag(R.id.position,Integer.valueOf(position));
flowLayout.addView(contactLabel);
registerForContextMenu(contactLabel);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo)
{
String name = ((TextView)v).getText().toString();
super.onCreateContextMenu(menu, v, menuInfo);
menu.setHeaderTitle(name);
menu.add(0, v.getId(), 0, "Call");
menu.add(0, v.getId(), 0, "SMS");
}
@Override
public boolean onContextItemSelected(MenuItem item){
if(item.getTitle()=="Call"){
Toast.makeText(getApplicationContext(),"text view text",Toast.LENGTH_LONG).show();
}
else if(item.getTitle()=="SMS"){
Toast.makeText(getApplicationContext(),"sending sms code",Toast.LENGTH_LONG).show();
}else{
return false;
}
return true;
}
我想在onContextItemSelected中显示textview文本。 怎么办?
答案 0 :(得分:1)
由于您将菜单项ID设置为视图的相同ID,您可以使用它来定位它,即
TextView tv = (TextView)findViewById(item.getItemId());