android.view.ViewDebug#CapturedViewProperty ( )源码实例Demo

下面列出了android.view.ViewDebug#CapturedViewProperty ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: android_9.0.0_r45   文件: AdapterView.java
/**
 * @return The id corresponding to the currently selected item, or {@link #INVALID_ROW_ID}
 * if nothing is selected.
 */
@ViewDebug.CapturedViewProperty
public long getSelectedItemId() {
    return mNextSelectedRowId;
}
 
源代码2 项目: android-tv-launcher   文件: AdapterView.java
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
	return this.mNextSelectedPosition;
}
 
源代码3 项目: CSipSimple   文件: MenuItemImpl.java
@ViewDebug.CapturedViewProperty
public CharSequence getTitle() {
    return mTitle;
}
 
源代码4 项目: zen4android   文件: MenuItemImpl.java
@ViewDebug.CapturedViewProperty
public int getItemId() {
    return mId;
}
 
源代码5 项目: zen4android   文件: IcsAdapterView.java
/**
 * @return The id corresponding to the currently selected item, or {@link #INVALID_ROW_ID}
 * if nothing is selected.
 */
@ViewDebug.CapturedViewProperty
public long getSelectedItemId() {
    return mNextSelectedRowId;
}
 
@ViewDebug.CapturedViewProperty
public int getItemId() {
    return mId;
}
 
源代码7 项目: SimplifyReader   文件: PLAAdapterView.java
/**
 * @return The id corresponding to the currently selected item, or {@link #INVALID_ROW_ID}
 * if nothing is selected.
 */
@ViewDebug.CapturedViewProperty
public long getSelectedItemId() {
	return INVALID_ROW_ID;
}
 
源代码8 项目: EverMemo   文件: PLA_AdapterView.java
/**
 * @return The id corresponding to the currently selected item, or {@link #INVALID_ROW_ID}
 * if nothing is selected.
 */
@ViewDebug.CapturedViewProperty
public long getSelectedItemId() {
	return INVALID_ROW_ID;
}
 
源代码9 项目: android-apps   文件: IcsAdapterView.java
/**
 * @return The id corresponding to the currently selected item, or {@link #INVALID_ROW_ID}
 * if nothing is selected.
 */
@ViewDebug.CapturedViewProperty
public long getSelectedItemId() {
    return mNextSelectedRowId;
}
 
源代码10 项目: Klyph   文件: AdapterView.java
/**
 * Return the position of the currently selected item within the adapter's data set
 * 
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
	return mNextSelectedPosition;
}
 
源代码11 项目: android_9.0.0_r45   文件: AdapterView.java
/**
 * @return The number of items owned by the Adapter associated with this
 *         AdapterView. (This is the number of data items, which may be
 *         larger than the number of visible views.)
 */
@ViewDebug.CapturedViewProperty
public int getCount() {
    return mItemCount;
}
 
源代码12 项目: zen4android   文件: IcsAdapterView.java
/**
 * Return the position of the currently selected item within the adapter's data set
 *
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
    return mNextSelectedPosition;
}
 
源代码13 项目: zen4android   文件: IcsAdapterView.java
/**
 * @return The number of items owned by the Adapter associated with this
 *         AdapterView. (This is the number of data items, which may be
 *         larger than the number of visible views.)
 */
@ViewDebug.CapturedViewProperty
public int getCount() {
    return mItemCount;
}
 
源代码14 项目: CSipSimple   文件: IcsAdapterView.java
/**
 * @return The number of items owned by the Adapter associated with this
 *         AdapterView. (This is the number of data items, which may be
 *         larger than the number of visible views.)
 */
@ViewDebug.CapturedViewProperty
public int getCount() {
    return mItemCount;
}
 
源代码15 项目: samples   文件: EcoGalleryAdapterView.java
/**
 * Return the position of the currently selected item within the adapter's
 * data set
 *
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if
 * there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
    return mNextSelectedPosition;
}
 
/**
 * Return the position of the currently selected item within the adapter's data set
 *
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
    return mNextSelectedPosition;
}
 
源代码17 项目: samples   文件: EcoGalleryAdapterView.java
/**
 * @return The number of items owned by the Adapter associated with this
 * AdapterView. (This is the number of data items, which may be
 * larger than the number of visible view.)
 */
@ViewDebug.CapturedViewProperty
public int getCount() {
    return mItemCount;
}
 
源代码18 项目: EverMemo   文件: PLA_AdapterView.java
/**
 * Return the position of the currently selected item within the adapter's data set
 *
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
	return INVALID_POSITION;
}
 
源代码19 项目: SimplifyReader   文件: PLAAdapterView.java
/**
 * Return the position of the currently selected item within the adapter's data set
 *
 * @return int Position (starting at 0), or {@link #INVALID_POSITION} if there is nothing selected.
 */
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
	return INVALID_POSITION;
}
 
源代码20 项目: SimplifyReader   文件: PLAAdapterView.java
/**
 * @return The number of items owned by the Adapter associated with this
 *         AdapterView. (This is the number of data items, which may be
 *         larger than the number of visible view.)
 */
@ViewDebug.CapturedViewProperty
public int getCount() {
	return mItemCount;
}