summaryrefslogtreecommitdiff
path: root/main/res/layout/sud_glif_list_template_content.xml
diff options
context:
space:
mode:
authorSetup Wizard Team <android-setup-team-eng@google.com>2018-12-20 15:49:19 +0800
committercnchen <cnchen@google.com>2018-12-21 10:26:07 +0800
commit545407a543787b20ff37e59c1bff7ce03e584a4b (patch)
tree073ab22cb468f480b4ba83c75ffd1d856ac12343 /main/res/layout/sud_glif_list_template_content.xml
parent266fef694f77328f3698d6d40fd48d4e29831dc4 (diff)
downloadsetupdesign-545407a543787b20ff37e59c1bff7ce03e584a4b.tar.gz
Import updated Android Setupdesign Library 226288747
Test: mm , manually test PixelSetupWizard.apk PiperOrigin-RevId: 226288747 Change-Id: I0b3d023cc770bf9ce13a3127fbc1c8a6919f888b
Diffstat (limited to 'main/res/layout/sud_glif_list_template_content.xml')
-rw-r--r--main/res/layout/sud_glif_list_template_content.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/main/res/layout/sud_glif_list_template_content.xml b/main/res/layout/sud_glif_list_template_content.xml
new file mode 100644
index 0000000..0145797
--- /dev/null
+++ b/main/res/layout/sud_glif_list_template_content.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <ViewStub
+ android:id="@+id/suw_layout_sticky_header"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <!-- Ignore UnusedAttribute: scrollIndicators is new in M. Default to no indicators in older
+ versions. -->
+ <com.google.android.setupdesign.view.StickyHeaderListView
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@android:id/list"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:scrollIndicators="?attr/suwScrollIndicators"
+ app:suwHeader="@layout/sud_glif_header"
+ tools:ignore="UnusedAttribute" />
+
+ <ViewStub
+ android:id="@+id/suc_layout_footer"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+</LinearLayout>