本文整理了Java中android.widget.ExpandableListView.getSelectedPosition()
方法的一些代码示例,展示了ExpandableListView.getSelectedPosition()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ExpandableListView.getSelectedPosition()
方法的具体详情如下:
包路径:android.widget.ExpandableListView
类名称: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;
}
}
内容来源于网络,如有侵权,请联系作者删除!