我正在为我的大学项目工作,为一个典型的用户交互应用程序。我已经实现了一个按钮,长按一下就会打开一个浮动的上下文菜单。有没有办法打开这个菜单一次点击。我已经检查了网络,但我无法解决这个问题。 谢谢你的时间。
公共类MainActivity扩展了ActionBarActivity {
Button b1;
RelativeLayout ourlayout;
String s1="@string/menu_add";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1 = (Button)findViewById(R.id.button1);
registerForContextMenu(b1);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
//////////////////////////////////////////////////////////////
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
// TODO Auto-generated method stub
super.onCreateContextMenu(menu, v, menuInfo);
getMenuInflater().inflate(R.menu.net, menu);
menu.setHeaderTitle("Select your service provider");
}
@Override
public boolean onContextItemSelected(MenuItem item) {
switch (item.getItemId()) {
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:0)
在Android开发人员那里阅读它Creating context menu,他们也有适当的exlanations示例代码。
答案 1 :(得分:0)
要完成任务,请尝试使用对话框而不是使用上下文菜单。
长按时打开上下文菜单,但单击也会打开对话框,长按也会打开。 打开对话框后,您也可以从对话框中获取数据。