Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリでは、searchview アイコンをクリックすると、画像に続く起動アイコンの横に < 矢印が付いたランチャー アイコンとともに検索ビューが開かれます。画像のクリックでいくつかの機能を実行するには?任意のアイデア??助けてください
あなたがやりたいことは次のとおりだと思います:
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: //your code here return true; default: return super.onOptionsItemSelected(item); } }