我创建了一个名为drmenu.xml的新菜单。当我按下菜单按钮时它可以正常工作,但我需要在用户按下按钮时打开上下文菜单。 下面的代码按钮只显示吐司。
这是我的xml布局:
<LinearLayout
android:id="@+id/MenuCall"
android:layout_width="90dip"
android:layout_height="match_parent"
android:gravity="right|center_vertical" >
<ImageView
android:id="@+id/MenuCall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/imageiew6" />
</LinearLayout>
这是我的java代码:
final LinearLayout callback_var = (LinearLayout) findViewById(R.id.MenuCall);
registerForContextMenu(callback_var);
callback_var.setOnClickListener(new android.view.View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "this is repeated", Toast.LENGTH_LONG).show();
openContextMenu(callback_var);
}
答案 0 :(得分:6)
如果你想创建一个上下文菜单,你必须调用方法registerForContextMenu()
传递应该与上下文菜单相关联的视图。
例如,假设将上下文菜单与Button关联:
Button button = (Button) findViewById(R.id.my_button);
registerForContextMenu(button);
可以在Activity的onCreate()中调用。然后,在同一活动中,您需要覆盖onCreateContextMenu()
方法。
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.your_context_menu, menu);
}
然后你必须实现onContextItemSelected()
,以便在按下上下文菜单中的项目时触发正确的操作:
@Override
public boolean onContextItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.first_action:
// your first action code
return true;
case R.id.second_action:
// your second action code
return true;
default:
return super.onContextItemSelected(item);
}
}
现在长按一下按钮会打开您在your_context_menu.xml
文件中定义的上下文菜单。
考虑通过长按打开上下文菜单符合Android标准用户界面,但是如果您希望简单点击上下文菜单,您可以查看here the answer
注意:强> 如上所述here
ID在整个树中不一定是唯一的,但应该是 在您正在搜索的树的一部分中是唯一的(可能经常 是整棵树,所以最好是完全独特的 可能的)。
答案 1 :(得分:0)
final LinearLayout callback_var = (LinearLayout) findViewById(R.id.MenuCall);
callback_var.setOnClickListener(new android.view.View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
openOptionsMenu();
}
});
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// TODO Auto-generated method stub
MenuInflater mnu = getMenuInflater();
mnu.inflate(R.menu.darunamamenu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// TODO Auto-generated method stub
switch (item.getItemId())
{
case R.id.firstpage:
break;
case R.id.exit:
finish();
System.exit(0);
break;
case R.id.setting:
Intent Settingact = new Intent(G.currentActivity, SettingActivity.class);
G.currentActivity.startActivity(Settingact);
G.currentActivity.finish();
break;
case R.id.regalarm:
Intent RegAlarm = new Intent(G.currentActivity, alarmsetter.class);
G.currentActivity.startActivity(RegAlarm);
G.currentActivity.finish();
break;
case R.id.inform:
Intent inform = new Intent(G.currentActivity, ActivityInformation.class);
G.currentActivity.startActivity(inform);
G.currentActivity.finish();
break;
}
return super.onOptionsItemSelected(item);
}