0

您好,我试图在我的 mainactivity 类中使​​用 onclicklistener 和 onmenuselectlistener 并且程序运行但选择弹出菜单选项不起作用他们不会将文本设置为希望任何人有任何想法?我知道我没有实现 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);

}

}

4

2 回答 2

0

看起来您没有将 onClickListeners 附加到任何东西。这意味着您是在说“每当以我为目标触发 onClick 事件时,执行此操作”。但是你永远不会让自己成为目标。尝试将以下代码添加到您的 onCreate。

arc.setOnClickListener(this);
line.setOnClickListener(this);
enter.setOnClickListener(this);

PopupMenu它出现时也会发生同样的事情。尝试mypopupmenu.addOnMenuItemSelectListener(this)在扩展菜单布局后立即添加。

于 2013-07-26T02:05:02.963 回答
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()以使用 switch 做任何你想做的事情,就像你对 actionListeners 所做的那样。

4)另外,你也可以重写与onPrepareOptionsMenu()前一个相同的方法,但每次打开菜单时都会调用它。

祝你好运

于 2013-07-26T02:47:28.320 回答