Java Code Examples for android.view.ViewDebug#CapturedViewProperty

The following examples show how to use android.view.ViewDebug#CapturedViewProperty . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AdapterView.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
/**
 * @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;
}
 
Example 2
Source File: IcsAdapterView.java    From android-apps with MIT License 4 votes vote down vote up
/**
 * @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;
}
 
Example 3
Source File: PLA_AdapterView.java    From EverMemo with MIT License 4 votes vote down vote up
/**
 * @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;
}
 
Example 4
Source File: PLAAdapterView.java    From SimplifyReader with Apache License 2.0 4 votes vote down vote up
/**
 * @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;
}
 
Example 5
Source File: MenuItemImpl.java    From Libraries-for-Android-Developers with MIT License 4 votes vote down vote up
@ViewDebug.CapturedViewProperty
public int getItemId() {
    return mId;
}
 
Example 6
Source File: IcsAdapterView.java    From zen4android with MIT License 4 votes vote down vote up
/**
 * @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;
}
 
Example 7
Source File: MenuItemImpl.java    From zen4android with MIT License 4 votes vote down vote up
@ViewDebug.CapturedViewProperty
public int getItemId() {
    return mId;
}
 
Example 8
Source File: MenuItemImpl.java    From CSipSimple with GNU General Public License v3.0 4 votes vote down vote up
@ViewDebug.CapturedViewProperty
public CharSequence getTitle() {
    return mTitle;
}
 
Example 9
Source File: AdapterView.java    From android-tv-launcher with MIT License 4 votes vote down vote up
@ViewDebug.CapturedViewProperty
public int getSelectedItemPosition() {
	return this.mNextSelectedPosition;
}
 
Example 10
Source File: IcsAdapterView.java    From zen4android with MIT License 2 votes vote down vote up
/**
 * @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;
}
 
Example 11
Source File: IcsAdapterView.java    From CSipSimple with GNU General Public License v3.0 2 votes vote down vote up
/**
 * @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;
}
 
Example 12
Source File: EcoGalleryAdapterView.java    From samples with Apache License 2.0 2 votes vote down vote up
/**
 * 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;
}
 
Example 13
Source File: IcsAdapterView.java    From Libraries-for-Android-Developers with MIT License 2 votes vote down vote up
/**
 * 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;
}
 
Example 14
Source File: EcoGalleryAdapterView.java    From samples with Apache License 2.0 2 votes vote down vote up
/**
 * @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;
}
 
Example 15
Source File: PLA_AdapterView.java    From EverMemo with MIT License 2 votes vote down vote up
/**
 * 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;
}
 
Example 16
Source File: PLAAdapterView.java    From SimplifyReader with Apache License 2.0 2 votes vote down vote up
/**
 * 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;
}
 
Example 17
Source File: IcsAdapterView.java    From zen4android with MIT License 2 votes vote down vote up
/**
 * 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;
}
 
Example 18
Source File: PLAAdapterView.java    From SimplifyReader with Apache License 2.0 2 votes vote down vote up
/**
 * @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;
}
 
Example 19
Source File: AdapterView.java    From android_9.0.0_r45 with Apache License 2.0 2 votes vote down vote up
/**
 * @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;
}
 
Example 20
Source File: AdapterView.java    From Klyph with MIT License 2 votes vote down vote up
/**
 * 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;
}