android.widget.ExpandableListView.getSelectedPosition()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中android.widget.ExpandableListView.getSelectedPosition()方法的一些代码示例,展示了ExpandableListView.getSelectedPosition()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ExpandableListView.getSelectedPosition()方法的具体详情如下:
包路径:android.widget.ExpandableListView
类名称:ExpandableListView
方法名:getSelectedPosition

ExpandableListView.getSelectedPosition介绍

暂无

代码示例

代码示例来源:origin: square/assertj-android

public ExpandableListViewAssert hasSelectedPosition(long position) {
  isNotNull();
  long actualPosition = actual.getSelectedPosition();
  assertThat(actualPosition) //
    .overridingErrorMessage("Expected selected position <%s> but was <%s>.", position,
      actualPosition) //
    .isEqualTo(position);
  return this;
 }
}

代码示例来源:origin: NordicSemiconductor/Android-nRF-Toolbox

/**
 * Gets the position (in packed position representation) of the currently selected group or child. Use {@link ExpandableListView#getPackedPositionType},
 * {@link ExpandableListView#getPackedPositionGroup}, and {@link ExpandableListView#getPackedPositionChild} to unpack the returned packed position.
 * 
 * @return A packed position representation containing the currently selected group or child's position and type.
 */
public long getSelectedPosition() {
  return mList.getSelectedPosition();
}

代码示例来源:origin: CUTR-at-USF/OpenTripPlanner-for-Android

/**
 * Gets the position (in packed position representation) of the currently
 * selected group or child. Use
 * {@link ExpandableListView#getPackedPositionType},
 * {@link ExpandableListView#getPackedPositionGroup}, and
 * {@link ExpandableListView#getPackedPositionChild} to unpack the returned
 * packed position.
 *
 * @return A packed position representation containing the currently
 * selected group or child's position and type.
 */
public long getSelectedPosition() {
  return mExpandableList.getSelectedPosition();
}

代码示例来源:origin: com.squareup.assertj/assertj-android

public ExpandableListViewAssert hasSelectedPosition(long position) {
  isNotNull();
  long actualPosition = actual.getSelectedPosition();
  assertThat(actualPosition) //
    .overridingErrorMessage("Expected selected position <%s> but was <%s>.", position,
      actualPosition) //
    .isEqualTo(position);
  return this;
 }
}

相关文章

ExpandableListView类方法