suw_items_switch.xml revision 6e55f30c31f1ac3b35d60f306cf6cef084b1a845
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="@style/SuwItemContainer.Verbose"
21    android:layout_width="match_parent"
22    android:layout_height="wrap_content"
23    android:descendantFocusability="blocksDescendants"
24    android:orientation="horizontal">
25
26    <FrameLayout
27        android:id="@+id/suw_items_icon_container"
28        android:layout_width="@dimen/suw_items_icon_container_width"
29        android:layout_height="wrap_content"
30        android:layout_gravity="top"
31        android:gravity="start">
32
33        <ImageView
34            android:id="@+id/suw_items_icon"
35            android:layout_width="wrap_content"
36            android:layout_height="wrap_content"
37            tools:ignore="ContentDescription" />
38
39    </FrameLayout>
40
41    <LinearLayout
42        android:layout_width="0dp"
43        android:layout_height="wrap_content"
44        android:layout_marginBottom="@dimen/suw_items_verbose_padding_bottom_extra"
45        android:layout_weight="1"
46        android:orientation="vertical">
47
48        <TextView
49            android:id="@+id/suw_items_title"
50            style="@style/SuwItemTitle.Verbose"
51            android:layout_width="match_parent"
52            android:layout_height="wrap_content"
53            android:gravity="start"
54            android:textAlignment="viewStart"
55            tools:ignore="UnusedAttribute" />
56
57        <TextView
58            android:id="@+id/suw_items_summary"
59            style="@style/SuwItemSummary"
60            android:layout_width="match_parent"
61            android:layout_height="wrap_content"
62            android:gravity="start"
63            android:textAlignment="viewStart"
64            android:visibility="gone"
65            tools:ignore="UnusedAttribute" />
66
67    </LinearLayout>
68
69    <android.support.v7.widget.SwitchCompat
70        android:id="@+id/suw_items_switch"
71        android:layout_width="wrap_content"
72        android:layout_height="wrap_content"
73        android:layout_gravity="center_vertical" />
74
75</LinearLayout>
76