1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2016 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17 18<android.support.v17.leanback.widget.GuidedActionItemContainer 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 xmlns:tools="http://schemas.android.com/tools" 21 style="?attr/guidedActionItemContainerStyle" 22 android:foreground="@null" 23 android:outlineProvider="background"> 24 <android.support.v17.leanback.widget.CheckableImageView 25 android:id="@+id/guidedactions_item_checkmark" 26 style="?attr/guidedActionItemCheckmarkStyle" 27 tools:ignore="ContentDescription" /> 28 <ImageView 29 android:id="@+id/guidedactions_item_icon" 30 style="?attr/guidedActionItemIconStyle" 31 tools:ignore="ContentDescription" /> 32 33 <android.support.v17.leanback.widget.NonOverlappingLinearLayout 34 android:id="@+id/guidedactions_item_content" 35 style="?attr/guidedActionItemContentStyle" > 36 <android.support.v17.leanback.widget.GuidedActionEditText 37 android:id="@+id/guidedactions_item_title" 38 style="?attr/guidedActionItemTitleStyle" /> 39 <android.support.v17.leanback.widget.GuidedActionEditText 40 android:id="@+id/guidedactions_item_description" 41 style="?attr/guidedActionItemDescriptionStyle" /> 42 </android.support.v17.leanback.widget.NonOverlappingLinearLayout> 43 44 <ImageView 45 android:id="@+id/guidedactions_item_chevron" 46 style="?attr/guidedActionItemChevronStyle" 47 tools:ignore="ContentDescription" /> 48 <ImageView 49 android:id="@+id/guidedactions_item_tail_image" 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:layout_marginStart="15dp" 53 android:adjustViewBounds="true" 54 android:src="@drawable/ic_draggable_white" 55 tools:ignore="ContentDescription" /> 56</android.support.v17.leanback.widget.GuidedActionItemContainer>