你好我试着在我的mainactivity类中使用onclicklistener和onmenuselectlistener并且程序运行但是选择弹出菜单opions不工作他们不会设置文本想要它想要任何人有任何想法吗?我知道我没有实现onMenuSelectListener,也许这就是我的问题,如果有什么其他方法可以使这个工作吗?
这是我的代码:
public class MainActivity extends Activity implements OnClickListener {
// init variables
Handler uiHandler;
EditText cl;
TextView info;
Button enter;
Button line;
Button arc;
DrawingUtils callDU = new DrawingUtils();
DrawingTools callDT = new DrawingTools();
EditTools callET = new EditTools();
Conversion callConversion = new Conversion();
GLSurfaceView mGLSurface;
String Tag = "Debug";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mGLSurface = new GLSurfaceView(this);
mGLSurface.setRenderer(new BasicRenderer());
setContentView(R.layout.canvas);
FrameLayout v = (FrameLayout) findViewById(R.id.canvas);
v.addView(mGLSurface);
// init views and buttons
info = (TextView) findViewById(R.id.info);
enter = (Button) findViewById(R.id.enter);
line = (Button) findViewById(R.id.line);
arc = (Button) findViewById(R.id.arc);
cl = (EditText) findViewById(R.id.cl);
/*
* Handler for Main Thread uiHandler = new Handler() { public void
* handleMessage(Message msg) { switch (msg.what) {
*
* } Bundle bundle = msg.getData(); String string1 =
* bundle.getString("P1Key"); String string2 =
* bundle.getString("P2Key"); info.setText(string1);
* info.setText(string2); } };
*/
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.enter:
break;
case R.id.line:
break;
case R.id.arc:
break;
}
};
public void CreatePopupMenu(View v) {
PopupMenu mypopupmenu = new PopupMenu(this, v);
MenuInflater inflater = mypopupmenu.getMenuInflater();
inflater.inflate(R.menu.filemenu, mypopupmenu.getMenu());
mypopupmenu.show();
}
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item) {
// TODO Auto-generated method stub
switch (item.getItemId()) {
case R.id.newCanas:
info.setText("New");
Log.d(Tag, "New was clicked");
break;
case R.id.open:
break;
case R.id.save:
break;
}
return super.onMenuItemSelected(featureId, item);
}
}
答案 0 :(得分:0)
看起来你并没有将onClickListeners附加到任何东西上。这意味着你说“每当onClick事件被我作为目标触发时,执行此操作”。但是你永远不会让自己成为目标。尝试将以下代码添加到onCreate。
arc.setOnClickListener(this);
line.setOnClickListener(this);
enter.setOnClickListener(this);
它出现的PopupMenu
也会发生同样的事情。在为菜单扩充后,请尝试添加mypopupmenu.addOnMenuItemSelectListener(this)
。
答案 1 :(得分:0)
乔纳森是对的。您应该在创建后添加的每个按钮中添加.setOnClickListener(this);
。
但是对于菜单项,您必须执行以下操作:
1)使用菜单上的项目创建布局,并将其存储在res/menu/
目录中。
实施例: main.xml中
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/action_settings"/>
</menu>
2)覆盖名为onCreateOptionsMenu()
的方法以填充菜单中的项目。
示例:
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;
}
3)重写方法onOptionsItemSelected()
以使用与使用actionListeners一样的开关执行任何操作。
4)此外,您还可以覆盖与前一个方法相同的方法onPrepareOptionsMenu()
,但每次菜单打开时都会调用它。