- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
package com.example.testing;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
Govnocoder#0xFF 17.02.2013 22:02 # +3
krypt 18.02.2013 01:48 # 0
bormand 18.02.2013 05:26 # +1
krypt 18.02.2013 10:50 # +1
QuickNick 19.02.2013 23:57 # 0
QuickNick 19.02.2013 23:56 # 0
Но да, обработка событий зачастую включает в себя обязанность возвратить некоторый флаг в коллбэке - чтоб система перекидывала или не перекидывала это событие вверх по цепочке.
guest 19.02.2013 12:44 # +1
You must return true for the menu to be displayed; if you return false it will not be shown
QuickNick 19.02.2013 23:54 # +1