The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
Romain Guy | 0cbe49a | 2010-01-08 15:05:22 -0800 | [diff] [blame] | 18 | android:layout_width="match_parent" |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 19 | android:layout_height="wrap_content"> |
| 20 | |
| 21 | <TextView android:id="@+id/autolink_default" |
| 22 | android:layout_width="wrap_content" |
| 23 | android:layout_height="wrap_content"/> |
| 24 | |
| 25 | <TextView android:id="@+id/autolink_web" |
| 26 | android:layout_width="wrap_content" |
| 27 | android:layout_height="wrap_content" |
| 28 | android:autoLink="web"/> |
| 29 | |
| 30 | <TextView android:id="@+id/autolink_email" |
| 31 | android:layout_width="wrap_content" |
| 32 | android:layout_height="wrap_content" |
| 33 | android:autoLink="email"/> |
| 34 | |
| 35 | <TextView android:id="@+id/autolink_phone" |
| 36 | android:layout_width="wrap_content" |
| 37 | android:layout_height="wrap_content" |
| 38 | android:autoLink="phone"/> |
| 39 | |
| 40 | <TextView android:id="@+id/autolink_all" |
| 41 | android:layout_width="wrap_content" |
| 42 | android:layout_height="wrap_content" |
| 43 | android:autoLink="all"/> |
| 44 | |
| 45 | <TextView android:id="@+id/autolink_compound1" |
| 46 | android:layout_width="wrap_content" |
| 47 | android:layout_height="wrap_content" |
| 48 | android:autoLink="web|email"/> |
| 49 | |
| 50 | <TextView android:id="@+id/autolink_compound2" |
| 51 | android:layout_width="wrap_content" |
| 52 | android:layout_height="wrap_content" |
| 53 | android:autoLink="web|phone"/> |
| 54 | |
| 55 | <TextView android:id="@+id/autolink_compound3" |
| 56 | android:layout_width="wrap_content" |
| 57 | android:layout_height="wrap_content" |
| 58 | android:autoLink="email|phone"/> |
| 59 | |
| 60 | <TextView android:id="@+id/autolink_compound4" |
| 61 | android:layout_width="wrap_content" |
| 62 | android:layout_height="wrap_content" |
| 63 | android:autoLink="phone|all"/> |
| 64 | |
| 65 | </FrameLayout> |