1 /* 2 * Copyright 2017 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.tv.twopanelsettings.slices.compat.widget; 18 19 import androidx.annotation.NonNull; 20 import androidx.annotation.StyleRes; 21 import com.android.tv.twopanelsettings.slices.compat.SliceItem; 22 23 /** 24 * Factory to return different styles for child views of a slice. 25 * 26 * <p>Slice framework has been deprecated, it will not receive any updates moving forward. If you 27 * are looking for a framework that handles communication across apps, consider using {@link 28 * android.app.appsearch.AppSearchManager}. 29 */ 30 // @Deprecated // Supported for TV 31 public interface RowStyleFactory { 32 /** 33 * Returns the style resource to use for this child. 34 * 35 * @return Style resource or 0 if the default style should be used. 36 */ 37 @StyleRes getRowStyleRes(@onNull SliceItem rowItem)38 int getRowStyleRes(@NonNull SliceItem rowItem); 39 } 40