@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mKeyboardShortcutHandler = TwidereApplication.getInstance(this).getKeyboardShortcutsHandler();
    setContentView(R.layout.activity_keyboard_shortcut_input);
    setTitle(KeyboardShortcutsHandler.getActionLabel(this, getKeyAction()));

    mButtonPositive.setOnClickListener(this);
    mButtonNegative.setOnClickListener(this);
    mButtonNeutral.setOnClickListener(this);
  }
  @Override
  public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_search);

    mImm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    recyclerView = (RecyclerView) findViewById(R.id.recyclerview);
    recyclerView.setLayoutManager(new LinearLayoutManager(this));
    adapter = new SearchAdapter(this);
    recyclerView.setAdapter(adapter);
  }