5
私はAndroid SDKバージョン23のAndroidアプリを持っています。今はバージョン19〜23を使用しているユーザー向けにしています。 アプリの頭メニュー項目をクリックできません。クリックすると何も起こりません。また、Log.v()を挿入すると、デバッグビューにメッセージが表示されません。ツールバーのメニュー項目はアンドロイドでクリックできません。4.4(19)
どうすればよいですか?
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();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
if (id == R.id.action_refresh) {
doRefreshGames(item);
return true;
}
if(id == R.id.action_rss){
Intent rssIntent = new Intent(AmericanFootball.this, AmericanFootballRSS.class);
//if you need to pass data:
Bundle mBundle = new Bundle();
mBundle.putString("myKey", "comeon");
rssIntent.putExtras(mBundle);
startActivity(rssIntent);
}
if (mDrawerToggle.onOptionsItemSelected(item)) {
return true;
}
return super.onOptionsItemSelected(item);
}
を説明するよう また、あなたはAppCompatActivityからあなたのアクティビティを拡張しました親との関係で
toolbar
位置を設定することで問題を解決できますか? –はい私はAppCompatActivityからアクティビティを拡張しますが、これは問題ですか? – baeckerman83