use of com.qualcomm.robotcore.hardware.configuration.DeviceConfiguration in project robotcode by OutoftheBoxFTC.
the class EditPortListSpinnerActivity method addViewListenersOnIndex.
@Override
protected void addViewListenersOnIndex(int index) // Plumb up all the event handlers for the indicated item
{
View itemView = findViewByIndex(index);
DeviceConfiguration config = findConfigByIndex(index);
addNameTextChangeWatcherOnIndex(index);
handleDisabledDevice(itemView, config);
handleSpinner(itemView, this.idItemSpinner, config);
}
Aggregations