Tabnine Logo
ExpandableListActivity
Code IndexAdd Tabnine to your IDE (free)

How to use
ExpandableListActivity
in
android.app

Best Java code snippets using android.app.ExpandableListActivity (Showing top 20 results out of 315)

origin: square/assertj-android

protected ExpandableListActivityAssert hasSelectedId(long id) {
 isNotNull();
 long actualId = actual.getSelectedId();
 assertThat(actualId) //
   .overridingErrorMessage("Expected selected ID <%s> but was <%s>.", id, actualId) //
   .isEqualTo(id);
 return this;
}
origin: square/assertj-android

 public ExpandableListActivityAssert hasSelectedPosition(long position) {
  isNotNull();
  long actualPosition = actual.getSelectedPosition();
  assertThat(actualPosition) //
    .overridingErrorMessage("Expected selected position <%s> bus was <%s>.", position,
      actualPosition) //
    .isEqualTo(position);
  return this;
 }
}
origin: iqiyi/Neptune

@Override
protected void onCreate(Bundle savedInstanceState) {
  if (mDelegate != null) {
    mDelegate.handleActivityOnCreateBefore(this, savedInstanceState);
  }
  super.onCreate(savedInstanceState);
  if (mDelegate != null) {
    mDelegate.handleActivityOnCreateAfter(this, savedInstanceState);
  }
}
origin: THEONE10211024/ApiDemos

  @Override
  protected void onDestroy() {
    super.onDestroy();

    // Null out the group cursor. This will cause the group cursor and all of the child cursors
    // to be closed.
    mAdapter.changeCursor(null);
    mAdapter = null;
  }
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
public boolean dispatchKeyEvent(KeyEvent event) {
  if (getSherlock().dispatchKeyEvent(event)) {
    return true;
  }
  return super.dispatchKeyEvent(event);
}
origin: com.willowtreeapps/oak-demos

@Override
public void onPanelClosed(int featureId, android.view.Menu menu) {
  getSherlock().dispatchPanelClosed(featureId, menu);
  super.onPanelClosed(featureId, menu);
}
origin: com.willowtreeapps/oak-demos

@Override
public void closeOptionsMenu() {
  if (!getSherlock().dispatchCloseOptionsMenu()) {
    super.closeOptionsMenu();
  }
}
origin: com.willowtreeapps/oak-demos

@Override
public void onConfigurationChanged(Configuration newConfig) {
  super.onConfigurationChanged(newConfig);
  getSherlock().dispatchConfigurationChanged(newConfig);
}
origin: com.willowtreeapps/oak-demos

@Override
protected void onPause() {
  getSherlock().dispatchPause();
  super.onPause();
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
public final boolean onMenuOpened(int featureId, android.view.Menu menu) {
  if (getSherlock().dispatchMenuOpened(featureId, menu)) {
    return true;
  }
  return super.onMenuOpened(featureId, menu);
}
origin: li2/learning-android-open-source

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
origin: qiubiteme/android_api_demos

  @Override
  protected void onDestroy() {
    super.onDestroy();

    // Null out the group cursor. This will cause the group cursor and all of the child cursors
    // to be closed.
    mAdapter.changeCursor(null);
    mAdapter = null;
  }
}
origin: com.willowtreeapps/oak-demos

@Override
public boolean dispatchKeyEvent(KeyEvent event) {
  if (getSherlock().dispatchKeyEvent(event)) {
    return true;
  }
  return super.dispatchKeyEvent(event);
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
public void onPanelClosed(int featureId, android.view.Menu menu) {
  getSherlock().dispatchPanelClosed(featureId, menu);
  super.onPanelClosed(featureId, menu);
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
public void closeOptionsMenu() {
  if (!getSherlock().dispatchCloseOptionsMenu()) {
    super.closeOptionsMenu();
  }
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
public void onConfigurationChanged(Configuration newConfig) {
  super.onConfigurationChanged(newConfig);
  getSherlock().dispatchConfigurationChanged(newConfig);
}
origin: com.actionbarsherlock/actionbarsherlock

@Override
protected void onPause() {
  getSherlock().dispatchPause();
  super.onPause();
}
origin: com.willowtreeapps/oak-demos

@Override
public final boolean onMenuOpened(int featureId, android.view.Menu menu) {
  if (getSherlock().dispatchMenuOpened(featureId, menu)) {
    return true;
  }
  return super.onMenuOpened(featureId, menu);
}
origin: qiubiteme/android_api_demos

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
origin: iqiyi/Neptune

@Override
protected void onDestroy() {
  super.onDestroy();
  if (mDelegate != null) {
    mDelegate.handleActivityOnDestroy(this);
  }
}
android.appExpandableListActivity

Most used methods

  • onDestroy
  • onCreate
  • closeOptionsMenu
  • dispatchKeyEvent
  • getSelectedId
  • getSelectedPosition
  • onConfigurationChanged
  • onMenuOpened
  • onPanelClosed
  • onPause
  • onPostCreate
  • onPostResume
  • onPostCreate,
  • onPostResume,
  • onStop,
  • onTitleChanged,
  • openOptionsMenu,
  • attachBaseContext,
  • findViewById,
  • onRestoreInstanceState,
  • onResume,
  • startActivityForResult

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • getSupportFragmentManager (FragmentActivity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JPanel (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now