19de363b8db05106b03d115c266859fe200d41db7Dake Gu/*
29de363b8db05106b03d115c266859fe200d41db7Dake Gu * Copyright (C) 2014 The Android Open Source Project
39de363b8db05106b03d115c266859fe200d41db7Dake Gu *
49de363b8db05106b03d115c266859fe200d41db7Dake Gu * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
59de363b8db05106b03d115c266859fe200d41db7Dake Gu * in compliance with the License. You may obtain a copy of the License at
69de363b8db05106b03d115c266859fe200d41db7Dake Gu *
79de363b8db05106b03d115c266859fe200d41db7Dake Gu * http://www.apache.org/licenses/LICENSE-2.0
89de363b8db05106b03d115c266859fe200d41db7Dake Gu *
99de363b8db05106b03d115c266859fe200d41db7Dake Gu * Unless required by applicable law or agreed to in writing, software distributed under the License
109de363b8db05106b03d115c266859fe200d41db7Dake Gu * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
119de363b8db05106b03d115c266859fe200d41db7Dake Gu * or implied. See the License for the specific language governing permissions and limitations under
129de363b8db05106b03d115c266859fe200d41db7Dake Gu * the License.
139de363b8db05106b03d115c266859fe200d41db7Dake Gu */
149de363b8db05106b03d115c266859fe200d41db7Dake Gupackage android.support.v17.leanback.widget;
159de363b8db05106b03d115c266859fe200d41db7Dake Gu
169de363b8db05106b03d115c266859fe200d41db7Dake Gu/**
17a00bada00bff4a58436a39472ab14ccb7a8f619dCraig Stout * Interface for receiving notification when a row or item becomes selected. The concept of
18a00bada00bff4a58436a39472ab14ccb7a8f619dCraig Stout * current selection is different than focus.  A row or item can be selected without having focus;
19a00bada00bff4a58436a39472ab14ccb7a8f619dCraig Stout * for example, when a row header view gains focus then the corresponding row view becomes selected.
2022eaa9441bf3a521bfafb160674ff2da421eded8Dake Gu * This interface expects row object to be sub class of {@link Row}.
219de363b8db05106b03d115c266859fe200d41db7Dake Gu */
2222eaa9441bf3a521bfafb160674ff2da421eded8Dake Gupublic interface OnItemViewSelectedListener extends BaseOnItemViewSelectedListener<Row> {
239de363b8db05106b03d115c266859fe200d41db7Dake Gu}
24