OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <LinearLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:orientation="vertical" |
| 9 android:layout_height="wrap_content" |
| 10 android:layout_width="fill_parent"> |
| 11 <ScrollView |
| 12 android:id="@+id/credential_scroll" |
| 13 android:layout_width="fill_parent" |
| 14 android:layout_height="wrap_content"> |
| 15 <LinearLayout |
| 16 android:id="@+id/credential_picker_layout" |
| 17 android:layout_width="fill_parent" |
| 18 android:layout_height="wrap_content" |
| 19 android:padding="8dp" |
| 20 android:background="?attr/selectableItemBackground" |
| 21 android:orientation="vertical"/> |
| 22 </ScrollView> |
| 23 <include layout="@layout/credential_picker_buttonbar"/> |
| 24 </LinearLayout> |
OLD | NEW |