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 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | |
7 android:layout_width="match_parent" | |
8 android:layout_height="wrap_content" | |
9 android:overScrollMode="ifContentScrolls" | |
10 android:paddingBottom="12dp" | |
11 android:paddingEnd="10dp" | |
12 android:paddingStart="14dp" | |
13 android:paddingTop="2dp" > | |
14 <org.chromium.ui.widget.TextViewWithClickableSpans | |
15 android:id="@+id/confirmMessage" | |
16 style="?android:attr/textAppearanceMedium" | |
17 android:layout_width="match_parent" | |
18 android:layout_height="wrap_content" | |
19 android:bufferType="spannable" | |
20 android:padding="5dp" /> | |
21 </ScrollView> | |
OLD | NEW |