Home | History | Annotate | Download | only in layout
      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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     19     xmlns:tools="http://schemas.android.com/tools"
     20     style="?attr/sudItemDescriptionStyle"
     21     android:layout_width="match_parent"
     22     android:layout_height="wrap_content"
     23     android:baselineAligned="false"
     24     android:orientation="horizontal"
     25     tools:ignore="UnusedResources">
     26     <!-- Ignore UnusedResources: can be used by clients -->
     27 
     28     <FrameLayout
     29         android:id="@+id/sud_items_icon_container"
     30         android:layout_width="@dimen/sud_items_icon_container_width"
     31         android:layout_height="wrap_content"
     32         android:layout_gravity="center_vertical"
     33         android:gravity="start">
     34 
     35         <ImageView
     36             android:id="@+id/sud_items_icon"
     37             android:layout_width="wrap_content"
     38             android:layout_height="wrap_content"
     39             tools:ignore="ContentDescription" />
     40 
     41     </FrameLayout>
     42 
     43     <LinearLayout
     44         android:layout_width="0dp"
     45         android:layout_height="wrap_content"
     46         android:layout_weight="1"
     47         android:orientation="vertical">
     48 
     49         <com.google.android.setupdesign.view.RichTextView
     50             android:id="@+id/sud_items_title"
     51             style="?attr/sudItemDescriptionTitleStyle"
     52             android:layout_width="match_parent"
     53             android:layout_height="wrap_content"
     54             android:lineSpacingExtra="@dimen/sud_description_line_spacing_extra"
     55             android:textAppearance="@style/TextAppearance.SudDescription"
     56             tools:ignore="UnusedAttribute" />
     57 
     58         <com.google.android.setupdesign.view.RichTextView
     59             android:id="@+id/sud_items_summary"
     60             style="@style/SudItemSummary"
     61             android:layout_width="match_parent"
     62             android:layout_height="wrap_content"
     63             android:gravity="start"
     64             android:textAlignment="viewStart"
     65             android:visibility="gone"
     66             tools:ignore="UnusedAttribute" />
     67 
     68     </LinearLayout>
     69 
     70 </LinearLayout>
     71