HomeSort by relevance Sort by last modified time
    Searched refs:isExpanded (Results 1 - 25 of 50) sorted by null

1 2

  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountActivity.java 113 boolean[] isExpanded;
117 isExpanded = new boolean[count];
119 isExpanded[i] = mList.isGroupExpanded(i);
122 isExpanded = null;
124 outState.putBooleanArray(EXPANDED_KEY, isExpanded);
132 boolean[] isExpanded = state.getBooleanArray(EXPANDED_KEY);
133 if(mList != null && isExpanded != null && mList.getCount() >= isExpanded.length) {
134 for(int i = 0; i < isExpanded.length; i++) {
135 if(isExpanded[i] && !mList.isGroupExpanded(i))
    [all...]
SelectSyncedCalendarsMultiAccountAdapter.java 318 protected void bindGroupView(View view, Context context, Cursor cursor, boolean isExpanded) {
349 protected View newGroupView(Context context, Cursor cursor, boolean isExpanded,
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 104 public View newGroupView(Context context, Cursor cursor, boolean isExpanded, ViewGroup parent) {
105 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
ExpandableListAdapter.java 114 * @param isExpanded whether the group is expanded or collapsed
125 View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent);
SimpleExpandableListAdapter.java 270 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
274 v = newGroupView(isExpanded, parent);
284 * @param isExpanded Whether the group is currently expanded.
288 public View newGroupView(boolean isExpanded, ViewGroup parent) {
289 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
CursorTreeAdapter.java 194 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
203 v = newGroupView(mContext, cursor, isExpanded, parent);
207 bindGroupView(v, mContext, cursor, isExpanded);
217 * @param isExpanded Whether the group is expanded.
221 protected abstract View newGroupView(Context context, Cursor cursor, boolean isExpanded,
231 * @param isExpanded Whether the group is expanded.
234 boolean isExpanded);
SimpleCursorTreeAdapter.java 258 protected void bindGroupView(View view, Context context, Cursor cursor, boolean isExpanded) {
ExpandableListView.java 359 (pos.isExpanded() ? 1 : 0) | // Expanded?
399 if ((pos.position.type == ExpandableListPosition.CHILD) || (pos.isExpanded() &&
551 if (posMetadata.isExpanded()) {
    [all...]
ExpandableListConnector.java 447 posMetadata.isExpanded(), convertView, parent);
    [all...]
  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 52 boolean isExpanded;
353 metadata.isExpanded = expanded;
412 if (mPositionMetadata.isExpanded) {
478 mPositionMetadata.isExpanded);
  /frameworks/ex/common/tests/src/com/android/common/widget/
GroupingListAdapterTests.java 301 private void assertPositionMetadata(int position, int itemType, boolean isExpanded,
307 assertEquals(isExpanded, metadata.isExpanded);
  /cts/tests/tests/widget/src/android/widget/cts/
BaseExpandableListAdapterTest.java 168 public View getGroupView(int groupPosition, boolean isExpanded,
SimpleCursorTreeAdapterTest.java 106 // The param context and isExpanded is never readed.
231 protected void bindGroupView(View v, Context context, Cursor cursor, boolean isExpanded) {
232 super.bindGroupView(v, context, cursor, isExpanded);
ResourceCursorTreeAdapterTest.java 191 boolean isExpanded) {
CursorTreeAdapterTest.java 604 Cursor cursor, boolean isExpanded) {
661 boolean isExpanded, ViewGroup parent) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTable.java 287 if (!m_activePropertyInfo.isExpanded()
293 if (m_activePropertyInfo.isExpanded()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 144 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.h 143 bool isExpanded() const;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeExpandableAdapter.java 124 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuItemImpl.java 654 public void setActionViewExpanded(boolean isExpanded) {
655 mIsActionViewExpanded = isExpanded;
  /cts/tests/src/android/widget/cts/util/
ExpandableListScenario.java 334 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 280 public View getGroupView(int groupPosition, boolean isExpanded,
BrowserHistoryPage.java 599 public View getGroupView(int groupPosition, boolean isExpanded,
615 return super.getGroupView(groupPosition, isExpanded, convertView, parent);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
ClusteredSuggestionsAdapter.java 228 int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedExpandableListAdapter.java 271 public View getGroupView(int groupPosition, boolean isExpanded,

Completed in 2678 milliseconds

1 2